diff --git a/components/Layout/index.tsx b/components/Layout/index.tsx new file mode 100644 index 00000000..3b78f2c8 --- /dev/null +++ b/components/Layout/index.tsx @@ -0,0 +1,17 @@ +import type { ReactElement } from 'react' +import Header from '~components/Header' + +interface Props { + children: ReactElement +} + +const Layout = ({children}: Props) => { + return ( + <> +
+
{children}
+ + ) +} + +export default Layout \ No newline at end of file