Files
vercel__next.js/test/e2e/next-link-errors/app/layout.js
2025-02-19 23:34:04 +01:00

8 lines
121 B
JavaScript

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