You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
392 B

---
order: 0
title:
zh-CN: 基本用法
en-US: Basic Usage
---
## zh-CN
单击图像可以放大显示。
## en-US
Click the image to zoom in.
```tsx
import { Image } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Image
width={200}
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
/>
);
export default App;
```