// 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 = { conversationId: string; i18n: LocalizerType; showGV2MigrationDialog: (id: string) => unknown; }; export function GroupV1DisabledActions({ conversationId, i18n, showGV2MigrationDialog, }: PropsType): JSX.Element { return (

{ return ( {parts} ); }, }} />

); }