Files
sexy/app/(app)/recordings/[id]/replay/page.tsx
T

12 lines
400 B
TypeScript
Raw Normal View History

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">
<h1 className="font-heading text-2xl font-semibold">Replay</h1>
<ReplayPlayerLoader recordingId={Number(id)} />
</div>
);
}