hensei-web/components/Layout/index.tsx
2022-12-27 17:14:16 -08:00

17 lines
279 B
TypeScript

import type { ReactElement } from 'react'
import TopHeader from '~components/Header'
interface Props {
children: ReactElement
}
const Layout = ({ children }: Props) => {
return (
<>
<TopHeader />
<main>{children}</main>
</>
)
}
export default Layout