mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
12 lines
229 B
TypeScript
12 lines
229 B
TypeScript
|
import React from 'react';
|
||
|
import { Image } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Image
|
||
|
width={200}
|
||
|
src="https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|