next.js/test/e2e/app-dir/instant-validation/app/suspense-in-root/static/config-depth-preference/layout.tsx
layout.tsx17 lines270 B
import { ReactNode } from 'react'

export default function Layout({
  children,
  slot,
}: {
  children: ReactNode
  slot: ReactNode
}) {
  return (
    <div>
      <div style={{ border: '1px solid blue', padding: '1em' }}>{slot}</div>
      {children}
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN