2020-10-30 20:34:04 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-02-12 21:30:58 +00:00
|
|
|
import * as React from 'react';
|
2020-09-12 00:46:52 +00:00
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { boolean } from '@storybook/addon-knobs';
|
2020-02-12 21:30:58 +00:00
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
import { DialogExpiredBuild } from './DialogExpiredBuild';
|
2021-09-18 00:30:08 +00:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
2020-02-12 21:30:58 +00:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
storiesOf('Components/DialogExpiredBuild', module).add(
|
|
|
|
'DialogExpiredBuild',
|
2020-02-12 21:30:58 +00:00
|
|
|
() => {
|
|
|
|
const hasExpired = boolean('hasExpired', true);
|
|
|
|
|
2021-08-19 22:56:29 +00:00
|
|
|
return <DialogExpiredBuild hasExpired={hasExpired} i18n={i18n} />;
|
2020-02-12 21:30:58 +00:00
|
|
|
}
|
|
|
|
);
|