mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a7107a3df4
Follow up for #64294 to make turbopack side work as well --------- Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
8 lines
121 B
JavaScript
8 lines
121 B
JavaScript
export default function RootLayout({ children }) {
|
|
return (
|
|
<html>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|