import React from 'react'; import { InboxOutlined, UploadOutlined } from '@ant-design/icons'; import { Button, Checkbox, Col, Form, InputNumber, Radio, Rate, Row, Select, Slider, Switch, Upload, } from 'antd'; const { Option } = Select; const formItemLayout = { labelCol: { span: 6 }, wrapperCol: { span: 14 }, }; const normFile = (e: any) => { console.log('Upload event:', e); if (Array.isArray(e)) { return e; } return e?.fileList; }; const App: React.FC = () => { const onFinish = (values: any) => { console.log('Received values of form: ', values); }; return (
Click or drag file to this area to upload
Support for a single or bulk upload.