import React from 'react';
import { withStyles } from '@material-ui/core/styles';

const styles = () => ({});

const NotFound = () => (
  <section>
    <h1>
      Not Found - 404
    </h1>
  </section>
);

NotFound.propTypes = {};

NotFound.defaultProps = {};


export default withStyles(styles)(NotFound);
