mirror of
https://github.com/theoludwig/theoludwig.git
synced 2026-05-06 13:48:12 +02:00
7bde328b96
BREAKING CHANGE: minimum supported Node.js >= 22.0.0 and pnpm >= 9.5.0
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
|