"use client" import { Player } from "react-tuby" import "react-tuby/css/main.css" import { cn } from "@/lib/utils" import { VideoInfo } from "@/types/general" export function CartesianVideoPlayer({ video, enableShortcuts = true, className = "", // currentTime, }: { video: VideoInfo enableShortcuts?: boolean className?: string // currentTime?: number }) { return (
) }