I use the React Upload component. I used the simple synchronous version in my project without any problems. Due to the file size I need to switch to the async Version. But I am not able to "transpile" my project. I have the following error message during project build:
Attempted import error: 'UploadAsync' is not exported from '@progress/kendo-react-upload' (imported as 'UploadAsync').
Reference: https://www.telerik.com/kendo-react-ui/components/upload/api/uploadasyncprops
In code I have no errors - only during the build process.
Here are my packages:
"@progress/kendo-licensing": "^1.3.5",
"@progress/kendo-react-grid": "^10.1.0",
"@progress/kendo-react-listview": "^10.1.0",
"@progress/kendo-react-treeview": "^10.1.0",
"@progress/kendo-react-upload": "^10.1.0",
"@progress/kendo-svg-icons": "^4.0.0"
How can I use the async React Upload component?