2018-11-08 21:53:19 -05:00

18 lines
378 B
JavaScript

import React, { Component } from 'react';
import GoogleMap from '../components/SightingMap';
class Sighting extends Component {
componentDidMount() {
document.title = 'Marten Tracker | Map';
}
render() {
return (
<div className='sighting-map'>
<GoogleMap/>
</div>
);
}
}
export default Sighting;