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.
26 lines
607 B
26 lines
607 B
2 years ago
|
import React from 'react';
|
||
|
import { UploadOutlined } from '@ant-design/icons';
|
||
|
import type { UploadProps } from 'antd';
|
||
|
import { Button, message, Upload } from 'antd';
|
||
|
|
||
|
const props: UploadProps = {
|
||
|
beforeUpload: file => {
|
||
|
const isPNG = file.type === 'image/png';
|
||
|
if (!isPNG) {
|
||
|
message.error(`${file.name} is not a png file`);
|
||
|
}
|
||
|
return isPNG || Upload.LIST_IGNORE;
|
||
|
},
|
||
|
onChange: info => {
|
||
|
console.log(info.fileList);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Upload {...props}>
|
||
|
<Button icon={<UploadOutlined />}>Upload png only</Button>
|
||
|
</Upload>
|
||
|
);
|
||
|
|
||
|
export default App;
|