Quest for Codev2.0.0
/
SIGN IN
next.js/test/e2e/app-dir/segment-cache/prefetch-inlining/app/test-instant-false-passthrough/inner/layout.tsx
layout.tsx7 lines206 B
import { ReactNode } from 'react'

// Small static layout below the instant:false pass-through.
export default function InnerLayout({ children }: { children: ReactNode }) {
  return <div>{children}</div>
}