rsnext/test/e2e/app-dir/searchparams-static-bailout/app/layout.tsx

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

8 lines
146 B
TypeScript
Raw Normal View History

2023-03-16 21:46:35 +01:00
export default function Root({ children }: { children: React.ReactNode }) {
return (
<html>
<body>{children}</body>
</html>
)
}