Files
2024-10-23 19:28:03 +02:00

8 lines
115 B
JavaScript

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