aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/MapPadding.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/map/MapPadding.js')
-rw-r--r--modern/src/map/MapPadding.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/modern/src/map/MapPadding.js b/modern/src/map/MapPadding.js
index cb16579..dec41b4 100644
--- a/modern/src/map/MapPadding.js
+++ b/modern/src/map/MapPadding.js
@@ -2,10 +2,16 @@ import { useEffect } from 'react';
import { map } from './Map';
-const MapPadding = ({ top, right, bottom, left }) => {
+const MapPadding = ({
+ top, right, bottom, left,
+}) => {
useEffect(() => {
- map.setPadding({ top, right, bottom, left });
- return () => map.setPadding({ top: 0, right: 0, bottom: 0, left: 0 });
+ map.setPadding({
+ top, right, bottom, left,
+ });
+ return () => map.setPadding({
+ top: 0, right: 0, bottom: 0, left: 0,
+ });
}, [top, right, bottom, left]);
return null;