rsnext/test/e2e/app-dir/missing-suspense-with-csr-bailout/app/layout.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
132 B
JavaScript
Raw Normal View History

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