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