mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
added live map
This commit is contained in:
9
traque-front/app/admin/map/page.js
Normal file
9
traque-front/app/admin/map/page.js
Normal file
@@ -0,0 +1,9 @@
|
||||
"use client";
|
||||
import dynamic from 'next/dynamic';
|
||||
|
||||
const LiveMap = dynamic(() => import('@/components/admin/maps').then((mod) => mod.LiveMap), {
|
||||
ssr: false
|
||||
});
|
||||
export default function LiveMapPage() {
|
||||
return <LiveMap />
|
||||
}
|
||||
Reference in New Issue
Block a user