hensei-web/components/Layout/index.tsx

17 lines
282 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