added tracker
This commit is contained in:
18
apps/dispatch/app/tracker/page.tsx
Normal file
18
apps/dispatch/app/tracker/page.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
"use client";
|
||||
import dynamic from "next/dynamic";
|
||||
import { ConnectedDispatcher } from "tracker/_components/ConnectedDispatcher";
|
||||
|
||||
const Map = dynamic(() => import("../_components/map/Map"), {
|
||||
ssr: false,
|
||||
});
|
||||
|
||||
const Page = () => {
|
||||
return (
|
||||
<>
|
||||
<Map />;
|
||||
<ConnectedDispatcher />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Page;
|
||||
Reference in New Issue
Block a user