// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReactElement } from 'react'; import React from 'react'; import type { LocalizerType } from '../types/Util'; import { Modal } from './Modal'; export function BadgeSustainerInstructionsDialog({ i18n, onClose, }: Readonly<{ i18n: LocalizerType; onClose: () => unknown }>): ReactElement { return (

{i18n('BadgeSustainerInstructions__header')}

{i18n('BadgeSustainerInstructions__subheader')}

  1. {i18n('BadgeSustainerInstructions__instructions__1')}
  2. {i18n('BadgeSustainerInstructions__instructions__2')}
  3. {i18n('BadgeSustainerInstructions__instructions__3')}
); }