Files
Desktop/ts/components/AvatarModalButtons.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

38 lines
930 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 './AvatarModalButtons.dom.js';
import { AvatarModalButtons } from './AvatarModalButtons.dom.js';
const { i18n } = window.SignalContext;
const createProps = (overrideProps: Partial<PropsType> = {}): PropsType => ({
hasChanges: Boolean(overrideProps.hasChanges),
i18n,
onCancel: action('onCancel'),
onSave: action('onSave'),
});
export default {
title: 'Components/AvatarModalButtons',
} satisfies Meta<PropsType>;
export function HasChanges(): React.JSX.Element {
return (
<AvatarModalButtons
{...createProps({
hasChanges: true,
})}
/>
);
}
export function NoChanges(): React.JSX.Element {
return <AvatarModalButtons {...createProps()} />;
}