Change the % to px for width & height

This commit is contained in:
Alireza Adli 2023-10-05 15:35:05 -04:00
parent 10d068ba62
commit bc5b1c8f79

View File

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