rsnext/test/e2e/app-dir/app-compilation/app/layout.js
Shu Ding 869aeb40ce
Fix HMR for missing dependencies in next-app-loader (#51778)
As noted in the comments, it's necessary to always add optional dependencies as missing dependencies even if they exist because they might be deleted and re-added.

Closes #51763.
2023-06-25 19:26:09 +00:00

7 lines
191 B
JavaScript

export default function Root({ children }) {
return (
<html className="this-is-the-document-html">
<body className="this-is-the-document-body">{children}</body>
</html>
)
}