split maps into multiple components, render sighting markers in real time, pull sighting info into marker info boxes

This commit is contained in:
Al Duncanson
2018-10-04 17:19:27 -04:00
parent 9dc5c4d69c
commit 7dd828a38c
8 changed files with 225 additions and 8 deletions

14
src/pages/SightingList.js Normal file
View File

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import Typography from '@material-ui/core/Typography';
class Sighting extends Component {
render() {
return (
<Typography variant='display1' align='center' gutterBottom>
Sightings
</Typography>
);
}
}
export default Sighting;