import React from "react"; import styles from "./index.less"; import { Upload, message } from "antd"; import { InboxOutlined } from "@ant-design/icons"; const { Dragger } = Upload; const props = { name: "file", multiple: true, action: "https://www.mocky.io/v2/5cc8019d300000980a055e76", onChange(info) { const { status } = info.file; if (status !== "uploading") { console.log(info.file, info.fileList); } if (status === "done") { message.success(`${info.file.name} file uploaded successfully.`); } else if (status === "error") { message.error(`${info.file.name} file upload failed.`); } } }; export default () => (

Click or drag file to this area to upload

Support for a single or bulk upload. Strictly prohibit from uploading company data or other band files

);