rsnext/test/e2e/import-conditions/app/layout.tsx
2024-06-17 10:05:29 +02:00

7 lines
146 B
TypeScript

export default function Root({ children }: { children: React.ReactNode }) {
return (
<html>
<body>{children}</body>
</html>
)
}