25 lines
350 B
TypeScript
25 lines
350 B
TypeScript
"use client"
|
|
|
|
import ConnectedOpsPortal from "@/components/dashboard/intelligence/connectedOps";
|
|
import GpsTrackingPortal from "@/components/dashboard/intelligence/gpsTracking";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function GpsTrackingPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<GpsTrackingPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |