12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import type React from 'react'
|
|
|
|
interface LayoutProps {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const Layout: React.FC<LayoutProps> = async ({ children }) => {
|
|
return <main>{children}</main>
|
|
}
|
|
|
|
export default Layout
|