import React, { useState } from 'react'; import { Upload, Button, Icon } from '@btri-ui/base'; import { UploadFile, UploadProps } from 'antd'; export default () => { const [fileList, setFileList] = useState([]); const handleChange: UploadProps['onChange'] = ({ fileList: newFileList }) => setFileList(newFileList); return ( <> ); };