next.js/test/e2e/app-dir/prefetch-true-instant/app/layout-instant/layout.tsx
layout.tsx11 lines285 B
import { ReactNode } from 'react'

export const unstable_instant = {
  samples: [{ cookies: [{ name: 'test', value: null }] }],
}
export const unstable_prefetch = 'force-runtime'

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