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