next.js/test/e2e/postcss-config-ts/postcss-config/app/layout.tsx
layout.tsx14 lines191 B
import './globals.css'

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