import type { RefObject } from "react"; interface Props { videoRef: RefObject; active: boolean; error: string | null; } export function WebcamSensing({ videoRef, active, error }: Props) { return (
); }