import { Text } from "preact-i18n";
import { Modal } from "@revoltchat/ui";
interface Props {
onClose: () => void;
}
export function SignedOutModal({ onClose }: Props) {
return (
}
actions={[
{
onClick: onClose,
confirmation: true,
children: ,
},
]}
/>
);
}