added sighting list, and custom comment thread

This commit is contained in:
Al Duncanson
2018-10-25 21:26:18 -04:00
parent 16f6dde825
commit 4d0188d144
5 changed files with 149 additions and 215 deletions

View File

@@ -1,13 +1,10 @@
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>
<ViewSightings/>
);
}
}