File size: 197 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { ReactNode } from 'react'
import './styles.css'
export default function Root({ children }: { children: ReactNode }) {
return (
<html>
<body>{children}</body>
</html>
)
}
|