Enlarge the map by changing width and height values

This commit is contained in:
Alireza Adli 2023-10-05 13:33:17 -04:00
parent 2c53688a8e
commit e5cc456d6b

View File

@ -23,7 +23,7 @@ export function CityMap() {
}, []); }, []);
return ( return (
<div id="map" style={{ width: '100%', height: '400px' }}></div> <div id="map" style={{ width: '350%', height: '600px' }}></div>
); );
} }