next.js/test/e2e/app-dir/dev-overlay/portal-not-affect-parent/app/layout.tsx
layout.tsx19 lines360 B
import { ReactNode } from 'react'
export default function Root({ children }: { children: ReactNode }) {
  return (
    <html>
      <body
        style={{
          margin: 0,
          padding: 0,
          width: 300,
          display: 'flex',
          justifyContent: 'space-between',
        }}
      >
        {children}
      </body>
    </html>
  )
}
Quest for Codev2.0.0
/
SIGN IN