import { ReplayPlayerLoader } from "@/components/recordings/ReplayPlayerLoader"; export default async function ReplayPage({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; return (

Replay

); }