10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import { LiveEventsList } from "@/components/betting/live-events-list"
|
|
|
|
export default function LivePage() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<LiveEventsList />
|
|
</div>
|
|
)
|
|
}
|