import React, { useRef } from 'react'; import { ComponentStory, ComponentMeta } from '@storybook/react'; import { OPPreviewImage, OPButton } from '../../src/index'; export default { title: '组件/数据展示/OPPreviewImage', component: OPPreviewImage, } as ComponentMeta; export const 图片预览: ComponentStory< typeof OPPreviewImage > = (): JSX.Element => { const ref = useRef(); const preview = () => { ref.current.view(1); }; const datas = [ 'https://img.alicdn.com/imgextra/i1/O1CN01Y2SOnw1RCqxJtE5iF_!!6000000002076-2-tps-528-712.png', 'https://img.alicdn.com/imgextra/i3/O1CN01ZljOEh1DlI703Puek_!!6000000000256-0-tps-960-1280.jpg', 'https://img.alicdn.com/imgextra/i2/O1CN01yeKSst1t4Qv6ED1QB_!!6000000005848-2-tps-520-476.png', ]; return (
点击展示
); };