mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-11-04 00:19:01 +01:00
8 lines
182 B
TypeScript
8 lines
182 B
TypeScript
interface RootLayoutProps extends React.PropsWithChildren {}
|
|
|
|
const RootLayout = ({ children }: RootLayoutProps): React.ReactNode => {
|
|
return children
|
|
}
|
|
|
|
export default RootLayout
|