next.js/test/e2e/app-dir/segment-cache/prefetch-inlining/app/test-runtime-passthrough/inner/layout.tsx
layout.tsx8 lines300 B
import { ReactNode } from 'react'

// Small static layout below the runtime pass-through. The root should be able
// to inline through the runtime layout above and into this layout's child.
export default function InnerLayout({ children }: { children: ReactNode }) {
  return <div>{children}</div>
}
Quest for Codev2.0.0
/
SIGN IN