import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { SessionsTable } from "@/components/sessions/SessionsTable"; import { listPlaySessions } from "@/lib/db/queries/play-sessions"; export const dynamic = "force-dynamic"; export default async function SessionsPage() { const sessions = [...(await listPlaySessions())].reverse(); return (
History of live control and replay sessions.