Files
2023-09-15 17:09:59 +00:00

8 lines
115 B
JavaScript

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