mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
20 lines
416 B
TypeScript
20 lines
416 B
TypeScript
import * as React from 'react';
|
|
|
|
function ControlPanel(props) {
|
|
return (
|
|
<div className="control-panel">
|
|
<h3>Geocoder</h3>
|
|
<div className="source-link">
|
|
<a
|
|
href="https://github.com/visgl/react-map-gl/tree/7.0-release/examples/geocoder"
|
|
target="_new"
|
|
>
|
|
View Code ↗
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default React.memo(ControlPanel);
|