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で実行
}