/* Copyright 2024 New Vector Ltd. Copyright 2021 The Matrix.org Foundation C.I.C. SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only Please see LICENSE files in the repository root for full details. */ import React from "react"; import { _t } from "../../../languageHandler"; import BaseDialog from "./BaseDialog"; import DialogButtons from "../elements/DialogButtons"; interface Props { onFinished(reset?: boolean): void; } export default class SeshatResetDialog extends React.PureComponent { public render(): React.ReactNode { return (

{_t("seshat|reset_description")}
{_t("seshat|reset_explainer")}

); } }