2023-04-17 15:06:43 +02:00

12 lines
159 B
TypeScript

interface LayoutProps {
children: React.ReactNode
}
export function Layout({ children }: LayoutProps) {
return (
<>
<main>{children}</main>
</>
)
}