28 lines
785 B
TypeScript
28 lines
785 B
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { Meta, Story } from '@storybook/react';
|
|
import React from 'react';
|
|
|
|
import type { PropsType } from './SignalConnectionsModal';
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
import { SignalConnectionsModal } from './SignalConnectionsModal';
|
|
import { setupI18n } from '../util/setupI18n';
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
export default {
|
|
title: 'Components/SignalConnectionsModal',
|
|
component: SignalConnectionsModal,
|
|
argTypes: {
|
|
i18n: {
|
|
defaultValue: i18n,
|
|
},
|
|
onClose: { action: true },
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story<PropsType> = args => <SignalConnectionsModal {...args} />;
|
|
|
|
export const Modal = Template.bind({});
|
|
Modal.args = {};
|