next.js/test/e2e/app-dir/instant-validation/app/suspense-in-root/parallel/slot-runtime-config/page.tsx
page.tsx11 lines223 B
import { cookies } from 'next/headers'

export default async function ChildrenPage() {
  await cookies()
  return (
    <main>
      <p>This is the children page that awaits cookies() without Suspense</p>
    </main>
  )
}
Quest for Codev2.0.0
/
SIGN IN