blob: 03834188362259245663a8eec3498ab8ee9d0b11 (
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 '../../../../store/hooks/map'
const ScaleIndicatorContainer = (props) => {
const scale = useMapScale()
return <ScaleIndicatorComponent {...props} scale={scale} />
}
export default ScaleIndicatorContainer
|