Files
Desktop/ts/components/ContextMenu.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
825 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 './ContextMenu.dom.js';
import { ContextMenu } from './ContextMenu.dom.js';
const { i18n } = window.SignalContext;
export default {
title: 'Components/ContextMenu',
} satisfies Meta<PropsType<unknown>>;
const getDefaultProps = (): PropsType<number> => ({
i18n,
menuOptions: [
{
label: '1',
onClick: action('1'),
},
{
label: '2',
onClick: action('2'),
},
{
label: '3',
onClick: action('3'),
},
],
});
export function Default(): React.JSX.Element {
return <ContextMenu {...getDefaultProps()}>Menu</ContextMenu>;
}