next.js/test/e2e/app-dir/segment-cache/prefetch-inlining/app/test-restart/large-middle/layout.tsx
layout.tsx12 lines243 B
import { ReactNode } from 'react'
import { NoInline } from '../../../components/no-inline'

export default function LargeLayout({ children }: { children: ReactNode }) {
  return (
    <div>
      <NoInline />
      {children}
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN