import { Button, Upload } from 'antd'; import { UploadOutlined } from '@ant-design/icons'; import { FC } from 'react'; import { readExcelFile } from '../utils/excel'; const DutyTablePage: FC = () => { return ( { let data = readExcelFile(file, 0); data .then((d) => console.log('read data', d)) .catch((e) => console.log('got error', e)); return false; }} >