import React from 'react'; import { ComponentStory, ComponentMeta } from '@storybook/react'; import { OPMenuButton, OPButton } from '../../src/index'; export default { title: '组件/通用/OPMenuButton', component: OPMenuButton, } as ComponentMeta; export const 按钮: ComponentStory = (): JSX.Element => { return ( 删除商品 清空容器 ); };