Files
traque/traque-front/components/admin/zoneSelector.jsx
2024-06-06 23:55:36 +02:00

12 lines
388 B
JavaScript

import { ZoneInitializer } from "./maps";
export function ZoneSelector() {
//When the user set one zone, switch to the other
return <div className='w-2/5 h-full gap-1 bg-white p-10 flex flex-col text-center shadow-2xl overflow-y-scroll'>
<h2 className="text-2xl">Edit zones</h2>
<div className='h-96'>
<ZoneInitializer />
</div>
</div>
}