15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
|
import React, { Component } from 'react';
|
||
|
import Typography from '@material-ui/core/Typography';
|
||
|
|
||
|
class Sighting extends Component {
|
||
|
render() {
|
||
|
return (
|
||
|
<Typography variant='display1' align='center' gutterBottom>
|
||
|
Sightings
|
||
|
</Typography>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Sighting;
|