hensei-web/components/Layout/index.tsx
2022-03-14 16:47:18 -07:00

17 lines
No EOL
281 B
TypeScript

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