import React from "react"; import classnames from "classnames"; import DataError from "components/DataError"; const baseClass = "mdm-sso-error"; interface ISSOErrorProps { className?: string; } const SSOError = ({ className }: ISSOErrorProps) => { const classNames = classnames(baseClass, className); return (

Select Cancel and try again. If this keeps happening, please contact IT support.

); }; export default SSOError;