type FastcodeBetPageProps = { params: { id: string } } export default function FastcodeBetPage({ params }: FastcodeBetPageProps) { return (
Fast code bet page for ID: {params.id}
) }