mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
a89d55c011
This PR removed the old overlay including the deprecated `buildActivity` and `appIsrStatus` options. Closes NDX-785 Closes NDX-855 Closes NDX-865 Closes NDX-866 Closes NDX-867 Closes NDX-868
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
export default function RootLayout({ children }) {
|
|
return (
|
|
<html>
|
|
<head />
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|