Quest for Codev2.0.0
/
SIGN IN
next.js/test/e2e/app-dir/instant-validation-static-shells/fixtures/invalid-blocking-page-below-static/app/blocking-page-below-static/layout.tsx
layout.tsx15 lines283 B
export const unstable_instant = true

export default async function Layout({ children }) {
  return (
    <div>
      <p>
        This is a layout with{' '}
        <code>{`unstable_instant = { prefetch: 'static' }`}</code>.
      </p>
      <hr />
      {children}
    </div>
  )
}