Files
Jiachi Liu a7107a3df4 [turbopack] Fix css FOUC in dynamic component (#64021)
Follow up for #64294 to make turbopack side work as well

---------

Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
2024-04-10 18:44:17 +02:00

8 lines
121 B
JavaScript

export default function RootLayout({ children }) {
return (
<html>
<body>{children}</body>
</html>
)
}