1import { MapInteractionCSS } from 'react-map-interaction';
2
3// This component uses CSS to scale your content.
4// Just pass in content as children and it will take care of the rest.
5const ThingMap = () => {
6 return (
7 <MapInteractionCSS>
8 <img src="path/to/thing.png" />
9 </MapInteractionCSS>
10 );
11}