本文へ移動
verified onnext@16.3.3react@19
最終検証日 2026-08-27
Next.js道場

Q-COMPOSITION-003●●●○○next@16.3.3実機検証済

layout が Client Component の ThemeProvider で children を包んでいます。この page は Client Component になりますか。

app/page.tsx
Buildで実行import { cookies } from 'next/headers'
 
Serverで実行export default async function Page() {
Serverで実行 const store = await cookies()
Serverで実行 return <p>{store.get('theme')?.value ?? 'default'}</p>
Serverで実行}

つぎに