Change the % value for width & height

This commit is contained in:
Alireza Adli 2023-10-05 15:33:49 -04:00
parent 7e4fe071a6
commit 10d068ba62

View File

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