502ea174ab
Co-authored-by: Scott Nonnenberg <scott@signal.org>
20 lines
688 B
TypeScript
20 lines
688 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import type { Meta } from '@storybook/react';
|
|
import type { PropsType } from './SafetyNumberNotReady';
|
|
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',
|
|
} satisfies Meta<PropsType>;
|
|
|
|
export function Default(): JSX.Element {
|
|
return <SafetyNumberNotReady i18n={i18n} onClose={action('close')} />;
|
|
}
|