import { Text } from "preact-i18n"; import Modal from "../../../components/ui/Modal"; interface Props { onClose: () => void; error: string; } export function ErrorModal({ onClose, error }: Props) { return ( false} title={} actions={[ { onClick: onClose, confirmation: true, text: }, { onClick: () => location.reload(), text: } ]} > {error} ); }