79743248

Date: 2025-08-22 10:07:47
Score: 1
Natty:
Report link
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

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ademuyiwa adekunle idowu