Fortune-PlayLogic/app/create-fastcode-bet/[id]/page.tsx
“kirukib” 6fa5ba58d7 fs
2026-02-18 16:11:35 +03:00

13 lines
289 B
TypeScript

type FastcodeBetPageProps = {
params: { id: string }
}
export default function FastcodeBetPage({ params }: FastcodeBetPageProps) {
return (
<div className="text-sm text-foreground">
Fast code bet page for ID: <span className="font-mono">{params.id}</span>
</div>
)
}