summaryrefslogtreecommitdiff
path: root/src/containers/app/map/controls/ScaleIndicatorContainer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/app/map/controls/ScaleIndicatorContainer.js')
-rw-r--r--src/containers/app/map/controls/ScaleIndicatorContainer.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/containers/app/map/controls/ScaleIndicatorContainer.js b/src/containers/app/map/controls/ScaleIndicatorContainer.js
index 12596c9c..f075cde5 100644
--- a/src/containers/app/map/controls/ScaleIndicatorContainer.js
+++ b/src/containers/app/map/controls/ScaleIndicatorContainer.js
@@ -1,14 +1,14 @@
-import {connect} from "react-redux";
+import { connect } from "react-redux";
import ScaleIndicatorComponent from "../../../../components/app/map/controls/ScaleIndicatorComponent";
const mapStateToProps = state => {
- return {
- scale: state.map.scale,
- };
+ return {
+ scale: state.map.scale
+ };
};
-const ScaleIndicatorContainer = connect(
- mapStateToProps
-)(ScaleIndicatorComponent);
+const ScaleIndicatorContainer = connect(mapStateToProps)(
+ ScaleIndicatorComponent
+);
export default ScaleIndicatorContainer;