import React from 'react' import { Map, TileLayer } from 'react-leaflet' import { thunderforestApiKey } from '../../utils' export default class ActivityMap extends React.Component { constructor(props, context) { super(props, context) this.state = { lat: 51.505, lng: -0.09, zoom: 13, } } render() { const position = [this.state.lat, this.state.lng] return ( ) } }