/**
 * @module components/theme/Unauthorized/Unauthorized
 */

import React from 'react';

import { Unauthorized as UnauthorizedIoSanita } from 'io-sanita-theme/components';

/**
 * unauthorized function.
 * @function Unauthorized
 * @returns {string} Markup of the unauthorized page.
 */
const Unauthorized = () => {
  return <UnauthorizedIoSanita />;
};

export default Unauthorized;
