2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-02-12 13:30:58 -08:00
|
|
|
import * as React from 'react';
|
2023-01-18 15:31:10 -08:00
|
|
|
import { select } from '@storybook/addon-knobs';
|
2020-02-12 13:30:58 -08:00
|
|
|
|
2021-08-19 18:56:29 -04:00
|
|
|
import { DialogExpiredBuild } from './DialogExpiredBuild';
|
2021-09-17 20:30:08 -04:00
|
|
|
import { setupI18n } from '../util/setupI18n';
|
2020-02-12 13:30:58 -08:00
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
2021-10-12 18:59:08 -05:00
|
|
|
import { WidthBreakpoint } from './_util';
|
|
|
|
import { FakeLeftPaneContainer } from '../test-both/helpers/FakeLeftPaneContainer';
|
2020-02-12 13:30:58 -08:00
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
2022-06-06 20:48:02 -04:00
|
|
|
export default {
|
|
|
|
title: 'Components/DialogExpiredBuild',
|
|
|
|
};
|
2020-02-12 13:30:58 -08:00
|
|
|
|
2022-06-06 20:48:02 -04:00
|
|
|
export const _DialogExpiredBuild = (): JSX.Element => {
|
|
|
|
const containerWidthBreakpoint = select(
|
|
|
|
'containerWidthBreakpoint',
|
|
|
|
WidthBreakpoint,
|
|
|
|
WidthBreakpoint.Wide
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FakeLeftPaneContainer containerWidthBreakpoint={containerWidthBreakpoint}>
|
|
|
|
<DialogExpiredBuild
|
2021-10-12 18:59:08 -05:00
|
|
|
containerWidthBreakpoint={containerWidthBreakpoint}
|
2022-06-06 20:48:02 -04:00
|
|
|
i18n={i18n}
|
|
|
|
/>
|
|
|
|
</FakeLeftPaneContainer>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
_DialogExpiredBuild.story = {
|
|
|
|
name: 'DialogExpiredBuild',
|
|
|
|
};
|