Files
Jiachi Liu 18322d2d77 test: add test for logging trace of dynamic = error (#61811)
Add test that we can log the error trace when we found invalid dynamic
usage when `dynamic = "error"`


![image](https://github.com/vercel/next.js/assets/4800338/e6710019-ab94-42e8-81b2-6362f828cf35)


Closes NEXT-2402
Closes NEXT-2383
2024-02-08 16:53:43 +01:00

8 lines
115 B
JavaScript

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