next.js/test/development/app-dir/devtools-position/app/layout.tsx
layout.tsx10 lines186 B
import type { ReactNode } from 'react'

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