next.js/test/e2e/app-dir/instant-validation/app/(index)/layout.tsx
layout.tsx10 lines217 B
import { ReactNode } from 'react'

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html>
      <body style={{ fontFamily: 'monospace' }}>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN