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 = () => ( ); export default App;