2021-08-06 00:17:05 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
2021-08-06 00:17:05 +00:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
import { ConfirmDiscardDialog, PropsType } from './ConfirmDiscardDialog';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
const createProps = (): PropsType => ({
|
|
|
|
i18n,
|
|
|
|
onClose: action('onClose'),
|
|
|
|
onDiscard: action('onDiscard'),
|
|
|
|
});
|
|
|
|
|
|
|
|
const story = storiesOf('Components/ConfirmDiscardDialog', module);
|
|
|
|
|
|
|
|
story.add('Default', () => <ConfirmDiscardDialog {...createProps()} />);
|