import FrontCameraOverviewCard from "../components/FrontCameraOverview/FrontCameraOverviewCard"; import Sightings from "../components/PlateStack/Sightings"; import RearCameraOverviewCard from "../components/RearCameraOverview/RearCameraOverviewCard"; import { useNavigate } from "react-router"; import { useSwipeable } from "react-swipeable"; const Dashboard = () => { const navigate = useNavigate(); const handlers = useSwipeable({ onSwipedDown: () => navigate("/system-settings"), trackMouse: true, }); return (
); }; export default Dashboard;