// Copyright 2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import * as React from 'react'; import { Intl } from '../Intl'; import type { LocalizerType } from '../../types/Util'; export type PropsType = { i18n: LocalizerType; onStartGroupMigration: () => unknown; }; export const GroupV1DisabledActions = ({ i18n, onStartGroupMigration, }: PropsType): JSX.Element => { return (

{i18n('MessageRequests--learn-more')} ), }} />

); };