mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import { FC, memo } from 'react';
|
|
import { FullscreenControl, NavigationControl, ScaleControl } from 'react-map-gl';
|
|
|
|
const ControlPanel: FC = () => (
|
|
<>
|
|
<FullscreenControl position="top-left" />
|
|
<NavigationControl position="top-left" />
|
|
<ScaleControl />
|
|
</>
|
|
);
|
|
|
|
export default memo(ControlPanel);
|