import PropTypes from 'prop-types' import React from 'react' import { TILE_SIZE_IN_METERS, TILE_SIZE_IN_PIXELS } from '../MapConstants' import { scaleIndicator } from './ScaleIndicator.module.css' function ScaleIndicator({ scale }) { return (
{TILE_SIZE_IN_METERS}m
) } ScaleIndicator.propTypes = { scale: PropTypes.number.isRequired, } export default ScaleIndicator