24 lines
547 B
TypeScript
24 lines
547 B
TypeScript
import { Text } from "preact-i18n";
|
|
|
|
import { Modal } from "@revoltchat/ui";
|
|
|
|
interface Props {
|
|
onClose: () => void;
|
|
}
|
|
|
|
export function SignedOutModal({ onClose }: Props) {
|
|
return (
|
|
<Modal
|
|
onClose={onClose}
|
|
title={<Text id="app.special.modals.signed_out" />}
|
|
actions={[
|
|
{
|
|
onClick: onClose,
|
|
confirmation: true,
|
|
children: <Text id="app.special.modals.actions.ok" />,
|
|
},
|
|
]}
|
|
/>
|
|
);
|
|
}
|