|
import React, { Component } from 'react';
|
|
import Typography from '@material-ui/core/Typography';
|
|
|
|
class Home extends Component {
|
|
|
|
render() {
|
|
return (
|
|
<div>
|
|
<Typography variant='display1' align='center' gutterBottom>
|
|
Home
|
|
</Typography>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Home;
|