Fixed merge conflict
This commit is contained in:
@@ -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
12
src/pages/Report.js
Normal 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
14
src/pages/ViewMap.js
Normal 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;
|
||||
Reference in New Issue
Block a user