mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
import RootStyleRegistry from './root-style-registry'
|
|
|
|
export default function Root({ children }) {
|
|
return (
|
|
<html>
|
|
<body>
|
|
<RootStyleRegistry>{children}</RootStyleRegistry>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|