summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/containers/app/map/controls/ScaleIndicatorContainer.js
blob: a10eea2215e7da2adaaa8792cd3f5a35643763d3 (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react'
import ScaleIndicatorComponent from '../../../../components/app/map/controls/ScaleIndicatorComponent'
import { useMapScale } from '../../../../data/map'

const ScaleIndicatorContainer = (props) => {
    const scale = useMapScale()
    return <ScaleIndicatorComponent {...props} scale={scale} />
}

export default ScaleIndicatorContainer