mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
26 lines
445 B
TypeScript
26 lines
445 B
TypeScript
import { Modal } from 'antd';
|
|
|
|
interface Props {
|
|
title: string;
|
|
message: string;
|
|
}
|
|
|
|
export default function FatalErrorStateModal(props: Props) {
|
|
const { title, message } = props;
|
|
|
|
return (
|
|
<Modal
|
|
title={title}
|
|
visible
|
|
footer={null}
|
|
closable={false}
|
|
keyboard={false}
|
|
width={900}
|
|
centered
|
|
className="modal"
|
|
>
|
|
<p style={{ fontSize: '1.3rem' }}>{message}</p>
|
|
</Modal>
|
|
);
|
|
}
|