Files
vercel__next.js/test/e2e/node-cli-args/app/layout.tsx
2026-02-27 09:52:44 +01:00

15 lines
204 B
TypeScript

import * as React from 'react'
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html>
<head />
<body>{children}</body>
</html>
)
}