// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { LocalizerType } from '../types/Util'; import { Spinner } from './Spinner'; export type PropsType = { readonly i18n: LocalizerType; }; export const ProgressDialog = React.memo(({ i18n }: PropsType) => { return (
{i18n('updating')}
); });