import clsx from "clsx"; import { SnapshotContainer } from "../CameraOverview/SnapshotContainer"; import Card from "../UI/Card"; import { useNavigate } from "react-router"; import { useSwipeable } from "react-swipeable"; const OverviewVideoContainer = ({ side, settingsPage, }: { title: string; side: string; settingsPage?: boolean; }) => { const navigate = useNavigate(); const handlers = useSwipeable({ onSwipedLeft: () => navigate("/"), trackMouse: true, }); return (
); }; export default OverviewVideoContainer;