mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
40 lines
879 B
TypeScript
40 lines
879 B
TypeScript
import React from 'react';
|
|
import { UploadOutlined } from '@ant-design/icons';
|
|
import { Button, Upload } from 'antd';
|
|
import type { UploadFile } from 'antd';
|
|
|
|
const fileList: UploadFile[] = [
|
|
{
|
|
uid: '0',
|
|
name: 'xxx.png',
|
|
status: 'uploading',
|
|
percent: 33,
|
|
},
|
|
{
|
|
uid: '-1',
|
|
name: 'yyy.png',
|
|
status: 'done',
|
|
url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
|
|
},
|
|
{
|
|
uid: '-2',
|
|
name: 'zzz.png',
|
|
status: 'error',
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => (
|
|
<Upload
|
|
action="https://660d2bd96ddfa2943b33731c.mockapi.io/api/upload"
|
|
listType="picture"
|
|
defaultFileList={fileList}
|
|
>
|
|
<Button type="primary" icon={<UploadOutlined />}>
|
|
Upload
|
|
</Button>
|
|
</Upload>
|
|
);
|
|
|
|
export default App;
|