Initial commit for new panel
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"use client";
|
||||
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
const Map = dynamic(() => import("./map"), { ssr: false });
|
||||
|
||||
export function RegionLabels() {
|
||||
return (
|
||||
<div className="col-span-12 rounded-[10px] bg-white p-7.5 shadow-1 dark:bg-gray-dark dark:shadow-card xl:col-span-7">
|
||||
<h2 className="mb-7 text-body-2xlg font-bold text-dark dark:text-white">
|
||||
Region labels
|
||||
</h2>
|
||||
|
||||
<Map />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user