This commit is contained in:
Joey Coscarelli
2018-10-04 20:47:59 -04:00
16 changed files with 2893 additions and 249 deletions

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

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