add app readme
lots of styling improvements fix dark/bright mode
This commit is contained in:
15
app/src/components/Panel.tsx
Normal file
15
app/src/components/Panel.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { FC, ReactNode } from "react";
|
||||
|
||||
const Panel: FC<{ title: string; children: ReactNode }> = ({
|
||||
title,
|
||||
children,
|
||||
}) => {
|
||||
return (
|
||||
<div>
|
||||
<h3>{title}</h3>
|
||||
<div>{children}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Panel;
|
||||
Reference in New Issue
Block a user