next.js/test/e2e/app-dir/monaco-editor/app/layout.tsx
layout.tsx12 lines231 B
export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode
}>) {
  return (
    <html lang="en" className="w-full h-full">
      <body className={`w-full h-full`}>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN