Files
Desktop/ts/components/WhatsNewModal.dom.stories.tsx
Jamie b405e3d83d Prepare for upgrade to React 19
Co-authored-by: ayumi-signal <ayumi@signal.org>
2025-12-23 13:42:56 -08:00

24 lines
650 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { action } from '@storybook/addon-actions';
import type { Meta } from '@storybook/react';
import type { PropsType } from './WhatsNewModal.dom.js';
import { WhatsNewModal } from './WhatsNewModal.dom.js';
const { i18n } = window.SignalContext;
export default {
title: 'Components/WhatsNewModal',
} satisfies Meta<PropsType>;
const getDefaultProps = (): PropsType => ({
hideWhatsNewModal: action('hideWhatsNewModal'),
i18n,
});
export function Modal(): React.JSX.Element {
return <WhatsNewModal {...getDefaultProps()} />;
}