1
  beforeUpload: file => {
      const isPNG = file.type === 'application/vnd.ms-excel';
      if (!isPNG) {
        message.error(`${file.name} is not a XL file`);
      }
      return isPNG || Upload.LIST_IGNORE;
    },
    name: 'file',
    multiple: true,

What is the file type for xlsx excel to upload only this i can be able to upload only xls format how to upload both the formats

  • const isEXCEL = file.type === 'application/vnd.ms-excel' || file.type === 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'; – Deepak Deepak Oct 28 '22 at 09:02

0 Answers0