import React from "react";
const UnauthorizedView = () => {
 return <div>You donot have permission to view this page</div>;
};
export default UnauthorizedView;