UNPKG

react-photo-view-fix

Version:

一款精致的 React 的图片预览组件

9 lines (8 loc) 242 B
import React from 'react'; export interface IPhotoConsumer { src: string; intro?: React.ReactNode; children?: React.ReactElement<any>; } declare const PhotoConsumer: React.FC<IPhotoConsumer>; export default PhotoConsumer;