react-papaparse is the fastest in-browser CSV (or delimited text) parser for React. It is full of useful features such as CSVReader, CSVDownloader, readString, jsonToCSV, readRemoteFile, ... etc.
I am using react-papaparse for uploading a csv file in the UI. I use CSVReader component . The page is breaking in IE if I use this component. Screenshot attached. Please assist with this.
I am using react-papaparse for uploading a csv file in the UI. I use CSVReader component . The page is breaking in IE if I use this component. Screenshot attached. Please assist with this.
`<CSVReader onFileLoad={this.uploadFile} addRemoveButton={true} onRemoveFile={this.removeImportFile} noProgressBar={true} style={{ dropArea: { flex: 1, display: "flex", flexDirection: "column", alignItems: "center", padding: "8px 20px", borderWidth: "1px", borderRadius: "5px", borderColor: "#515151", borderStyle: "dashed", backgroundColor: "#fff", outline: "none", height: "auto", transition: "border .24s ease-in-out", cursor: "pointer", overflow: "hidden", }, dropFile: { width: "auto", maxWidth: "200px", fontSize: "12px", lineHeight: "16px", height: 50, borderRadius: "5px", overflow: "hidden", padding: "10px", }, fileNameInfo: { overflow: "hidden", textOverflow: "ellipsis", maxWidth: "150px", }, removeButton: { color: "#828282", }, }}