Fixed merge conflict

This commit is contained in:
ajmaley
2018-10-04 18:52:34 -04:00
15 changed files with 1082 additions and 206 deletions

View File

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

12
src/pages/Report.js Normal file
View File

@@ -0,0 +1,12 @@
import React, { Component } from 'react';
import ReportForm from '../components/ReportForm';
class Report extends Component {
render() {
return (
<ReportForm/>
);
}
}
export default Report;

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

@@ -0,0 +1,14 @@
import React, { Component } from 'react';
import GoogleMap from '../components/SightingMap';
class Sighting extends Component {
render() {
return (
<div className='sighting-map'>
<GoogleMap/>
</div>
);
}
}
export default Sighting;