mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
584 B
584 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
点击左右切换按钮可以预览多张图片。
en-US
Click the left and right switch buttons to preview multiple images.
import { Image } from 'antd';
const App = () => (
<Image.PreviewGroup>
<Image width={200} src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg" />
<Image
width={200}
src="https://gw.alipayobjects.com/zos/antfincdn/aPkFc8Sj7n/method-draw-image.svg"
/>
</Image.PreviewGroup>
);
export default App;