32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import FrontCameraOverviewCard from "../components/FrontCameraOverview/FrontCameraOverviewCard";
|
|
import RearCameraOverviewCard from "../components/RearCameraOverview/RearCameraOverviewCard";
|
|
|
|
import SightingHistoryWidget from "../components/SightingsWidget/SightingWidget";
|
|
import { SightingFeedProvider } from "../context/providers/SightingFeedProvider";
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<div className="mx-auto grid grid-cols-1 sm:grid-cols-1 lg:grid-cols-2 gap-2 px-2 sm:px-4 lg:px-0 w-full">
|
|
<SightingFeedProvider
|
|
url={
|
|
"http://100.116.253.81/mergedHistory/sightingSummary?mostRecentRef="
|
|
}
|
|
side="Front"
|
|
>
|
|
<FrontCameraOverviewCard className="order-1" />
|
|
<SightingHistoryWidget className="order-3" />
|
|
</SightingFeedProvider>
|
|
|
|
<SightingFeedProvider
|
|
url="http://100.82.205.44/SightingListRear/sightingSummary?mostRecentRef="
|
|
side="Rear"
|
|
>
|
|
<RearCameraOverviewCard className="order-2" />
|
|
<SightingHistoryWidget className="order-4" />
|
|
</SightingFeedProvider>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Dashboard;
|