import React, { Component } from 'react' import PropTypes from 'prop-types' export default class VisualizationControls extends Component { static propTypes = { map: PropTypes.object, onClickZoomExtents: PropTypes.func, onClickZoomIn: PropTypes.func, onClickZoomOut: PropTypes.func } render () { const { map, onClickZoomExtents, onClickZoomIn, onClickZoomOut } = this.props return
{map &&
Center View
}
Zoom In
Zoom Out
} }