client/src/components/Home.js
import React from 'react';
// Material UI
import { Container, Typography } from '@material-ui/core';
const Home = () => (
<Container maxWidth="xl">
<Typography variant="h2" component="h2">
Welcome to the Docs!
</Typography>
</Container>
);
export default Home;