13 lines
289 B
TypeScript
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>
|
|
)
|
|
}
|
|
|