2026-08-25 07:51:38 +02:00
|
|
|
import { ReplayPlayerLoader } from "@/components/recordings/ReplayPlayerLoader";
|
|
|
|
|
|
|
|
|
|
export default async function ReplayPage({ params }: { params: Promise<{ id: string }> }) {
|
|
|
|
|
const { id } = await params;
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-6">
|
2026-08-25 16:43:28 +02:00
|
|
|
<h1 className="font-heading text-2xl font-semibold">Replay</h1>
|
2026-08-25 07:51:38 +02:00
|
|
|
<ReplayPlayerLoader recordingId={Number(id)} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|