web / app /layout.tsx
quinnz's picture
fix error
8a7d317
raw
history blame contribute delete
152 Bytes
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html>
<body>{children}</body>
</html>
)
}