// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { action } from '@storybook/addon-actions'; import type { Meta } from '@storybook/react'; import type { PropsType } from './NewlyCreatedGroupInvitedContactsDialog'; import { NewlyCreatedGroupInvitedContactsDialog } from './NewlyCreatedGroupInvitedContactsDialog'; import { setupI18n } from '../util/setupI18n'; import enMessages from '../../_locales/en/messages.json'; import type { ConversationType } from '../state/ducks/conversations'; import { getDefaultConversation } from '../test-both/helpers/getDefaultConversation'; import { ThemeType } from '../types/Util'; const i18n = setupI18n('en', enMessages); const conversations: Array = [ getDefaultConversation({ title: 'Fred Willard' }), getDefaultConversation({ title: 'Marc Barraca' }), ]; export default { title: 'Components/NewlyCreatedGroupInvitedContactsDialog', } satisfies Meta; export function OneContact(): JSX.Element { return ( undefined} i18n={i18n} onClose={action('onClose')} theme={ThemeType.light} /> ); } export function TwoContacts(): JSX.Element { return ( undefined} i18n={i18n} onClose={action('onClose')} theme={ThemeType.light} /> ); }