mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
25 lines
815 B
TypeScript
25 lines
815 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { Meta } from '@storybook/react';
|
|
import type { PropsType as GroupV1DisabledActionsPropsType } from './GroupV1DisabledActions.dom.js';
|
|
import { GroupV1DisabledActions } from './GroupV1DisabledActions.dom.js';
|
|
|
|
const { i18n } = window.SignalContext;
|
|
|
|
const createProps = (): GroupV1DisabledActionsPropsType => ({
|
|
conversationId: '123',
|
|
i18n,
|
|
showGV2MigrationDialog: action('showGV2MigrationDialog'),
|
|
});
|
|
|
|
export default {
|
|
title: 'Components/Conversation/GroupV1DisabledActions',
|
|
} satisfies Meta<GroupV1DisabledActionsPropsType>;
|
|
|
|
export function Default(): JSX.Element {
|
|
return <GroupV1DisabledActions {...createProps()} />;
|
|
}
|