import React from 'react';
import Grid from '@material-ui/core/Grid';
import Unauthorized from '../../components/Unauthorized/Unauthorized';

const UnauthorizedPage = () => (
  <Grid
    item
    container
    justify="center"
    alignItems="center"
    xs={12}
    md={4}
  >
    <Unauthorized />
  </Grid>

);

export default UnauthorizedPage;
