I tried adding the example usage to my site to get started and this is how it displayed. Has anyone seen this issue? Solution?
Code looks like:
import React from 'react'
import { Map as LeafletMap, Marker, Popup, TileLayer } from 'react-leaflet'
export default class TestMap extends React.Component {
public render = () => {
const position: [number, number] = [51.505, -0.09]
return (
<LeafletMap center={position} zoom={13}>
<TileLayer
url='https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
/>
<Marker position={position}>
<Popup>
A pretty CSS3 popup.
<br />
Easily customizable.
</Popup>
</Marker>
</LeafletMap>
)
}
}
I had forgotten to add
to index.html