import clsx from "clsx"; import Card from "../UI/Card"; // import { SnapshotContainer } from "../CameraOverview/SnapshotContainer"; import { useSwipeable } from "react-swipeable"; import { useNavigate } from "react-router"; import CardHeader from "../UI/CardHeader"; import { faCamera } from "@fortawesome/free-regular-svg-icons"; import SightingOverview from "../SightingOverview/SightingOverview"; type CardProps = React.HTMLAttributes; const RearCameraOverviewCard = ({ className }: CardProps) => { const navigate = useNavigate(); const handlers = useSwipeable({ onSwipedLeft: () => navigate("/rear-camera-settings"), onSwipedDown: () => navigate("/system-settings"), trackMouse: true, }); return (
{/* */}
); }; export default RearCameraOverviewCard;