import { Text } from "preact-i18n";
import { Modal } from "@revoltchat/ui";
import { noopTrue } from "../../../lib/js";
import { ModalProps } from "../types";
export default function ShowToken({
name,
token,
...props
}: ModalProps<"show_token">) {
return (
}
actions={[
{
onClick: noopTrue,
confirmation: true,
children: ,
},
]}>
{token}
);
}