2023-07-13 19:06:42 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import * as React from 'react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2023-10-11 19:06:43 +00:00
|
|
|
import type { Meta } from '@storybook/react';
|
|
|
|
import type { PropsType } from './SafetyNumberNotReady';
|
2023-07-13 19:06:42 +00:00
|
|
|
import { SafetyNumberNotReady } from './SafetyNumberNotReady';
|
|
|
|
import { setupI18n } from '../util/setupI18n';
|
|
|
|
import enMessages from '../../_locales/en/messages.json';
|
|
|
|
|
|
|
|
const i18n = setupI18n('en', enMessages);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'Components/SafetyNumberNotReady',
|
2023-10-11 19:06:43 +00:00
|
|
|
} satisfies Meta<PropsType>;
|
2023-07-13 19:06:42 +00:00
|
|
|
|
|
|
|
export function Default(): JSX.Element {
|
|
|
|
return <SafetyNumberNotReady i18n={i18n} onClose={action('close')} />;
|
|
|
|
}
|