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

Q-FILL-005●●●○○next@16.3.3実機検証済

Profile は名前しか表示しません。見せてはいけない列を届けない書き方はどれですか。

app/page.tsx
Buildで実行import { Profile } from '@/components/Profile'
Buildで実行import { findUser } from '@/lib/repo'
 
Serverで実行export default async function Page() {
Serverで実行 const user = await findUser()
Browserで実行 return <Profile ______ />
Serverで実行}

つぎに