mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 18:20:17 +01:00
12 lines
388 B
JavaScript
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>
|
|
} |