interface PageProps { params: Promise<{ id: string }>; } const Page = async ({ params }: PageProps) => { const { id } = await params; return <div>Page for {id}</div>; }; export default Page;
does not work when i run build