import FrontCameraOverviewCard from "../components/FrontCameraOverview/FrontCameraOverviewCard"; import RearCameraOverviewCard from "../components/RearCameraOverview/RearCameraOverviewCard"; import SightingHistoryWidget from "../components/SightingsWidget/SightingWidget"; import { SightingFeedProvider } from "../context/providers/SightingFeedProvider"; import { CAM_BASE } from "../utils/config"; const Dashboard = () => { // const AGX_url = import.meta.env.VITE_AGX_BOX_URL; // const AGX_rear_url = import.meta.env.VITE_AGX_BOX_REAR_UR; // const test = import.meta.env.VITE_LOCAL; const dev_REAR_URL = `${CAM_BASE}/SightingListRear/sightingSummary?mostRecentRef=`; const dev_FRONT_URL = `${CAM_BASE}/SightingListFront/sightingSummary?mostRecentRef=`; // const testFront = import.meta.env.VITE_LOCAL_FRONT; console.log(CAM_BASE); return (
); }; export default Dashboard;