export default async function CheckoutPage(props: { params: Promise<{ id: number }> }) { const params = await props.params; return (

Checkout

); }