next.js/test/e2e/app-dir/no-double-tailwind-execution/app/layout.tsx
layout.tsx11 lines198 B
import './globals.css'

import { ReactNode } from 'react'
export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body>{children}</body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN