You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
515 B
22 lines
515 B
import React from "react"; |
|
import CardDesign1 from "../CardDesign1"; |
|
import CardDesign2 from "../CardDesign2"; |
|
import LeafletMap from "../LeafletMap"; |
|
|
|
const CreateMap = () => { |
|
return ( |
|
<div className="w-full p-7 mx-auto flex items-center justify-between gap-x-4"> |
|
{/* right */} |
|
<div className="w-1/4"> |
|
<CardDesign1 /> |
|
<CardDesign2 /> |
|
</div> |
|
{/* left */} |
|
<div className="flex-1"> |
|
<LeafletMap /> |
|
</div> |
|
</div> |
|
); |
|
}; |
|
|
|
export default CreateMap;
|
|
|