18 lines
371 B
JavaScript
18 lines
371 B
JavaScript
|
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;
|