12 lines
400 B
TypeScript
12 lines
400 B
TypeScript
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-display text-2xl font-semibold">Replay</h1>
|
||
|
|
<ReplayPlayerLoader recordingId={Number(id)} />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|