2026-08-25 07:51:38 +02:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
|
|
|
|
|
|
const ReplayPlayer = dynamic(() => import("./ReplayPlayer").then((m) => m.ReplayPlayer), {
|
|
|
|
|
ssr: false,
|
|
|
|
|
loading: () => <Skeleton className="h-64 w-full" />,
|
|
|
|
|
});
|
|
|
|
|
|
2026-08-27 21:38:51 +02:00
|
|
|
export function ReplayPlayerLoader({ sessionId }: { sessionId: number }) {
|
|
|
|
|
return <ReplayPlayer sessionId={sessionId} />;
|
2026-08-25 07:51:38 +02:00
|
|
|
}
|