next.js/test/development/basic/barrel-optimization/fixture-tremor/app/layout.tsx
layout.tsx12 lines177 B
export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode
}>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN