Money はメソッドを持つクラスです。このコードはどうなりますか。
app/price/page.tsx
Serverで実行
class Money {Serverで実行
constructor(public yen: number) {}Serverで実行
format() { return this.yen + '円' }Serverで実行
} Serverで実行
export default function Page() {Serverで実行
return <View money={new Money(1200)} />Serverで実行
}