next.js/test/e2e/next-test/first-time-setup-ts/app/layout.tsx
layout.tsx12 lines163 B
export default function Layout({
  children,
}: Readonly<{
  children: React.ReactNode
}>) {
  return (
    <html>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN