mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Rename files
This commit is contained in:
37
ts/components/ContextMenu.dom.stories.tsx
Normal file
37
ts/components/ContextMenu.dom.stories.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
// 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(): JSX.Element {
|
||||
return <ContextMenu {...getDefaultProps()}>Menu</ContextMenu>;
|
||||
}
|
||||
Reference in New Issue
Block a user