Files
2025-02-19 23:34:04 +01:00

8 lines
121 B
JavaScript

export default function RootLayout({ children }) {
return (
<html>
<body>{children}</body>
</html>
)
}