Sightings component - FIXME

This commit is contained in:
Joey Coscarelli
2018-10-03 23:55:29 -04:00
parent 603156def7
commit 26c87b92d3
3 changed files with 91 additions and 5 deletions

View File

@@ -1,11 +1,12 @@
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>
Sightings
<ViewSightings/>
</Typography>
);
}