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

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

const Unauthorized = () => (
  <section>
    <h1>
      UNAUTHORIZED
    </h1>
  </section>
);

Unauthorized.propTypes = {};

Unauthorized.defaultProps = {};


export default withStyles(styles)(Unauthorized);
