mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
e191ae3a02
Closes WEB-1584
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
export default function Root({ children }) {
|
|
return (
|
|
<html>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|