mirror of
https://github.com/fleetdm/fleet
synced 2026-05-09 02:01:09 +00:00
25 lines
546 B
TypeScript
25 lines
546 B
TypeScript
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 (
|
|
<DataError className={classNames}>
|
|
<p>
|
|
Select <strong>Cancel</strong> and try again. If this keeps happening,
|
|
please contact IT support.
|
|
</p>
|
|
</DataError>
|
|
);
|
|
};
|
|
|
|
export default SSOError;
|