Open4
メモ

Type error: Type 'xxxxxProps' does not satisfy the constraint 'PageProps'.
とかいうエラーが厄介すぎるのでめも
Nextは:"next": "^15.1.7",

type xxxxxProps = {
params: {
id: string;
};
};
export async function generateStaticParams() {
const items = await fetchHogeItems();
return items.map(item => ({
id: item.id,
}));
}
export default async function HogeHoge({ params }: xxxxxProps) {

参考にしたけどうまく行かなかったんだよなぁ....
ログインするとコメントできます