react-apexcharts
react-apexcharts copied to clipboard
No default export found in imported module "react-apexcharts"
I have found a solution that's ok to keep the lib updated. Adding to eslint configuration file the following code will ensure that the default import will not break.
"settings": {
//...others settings
"import/ignore": [
"react-apexcharts"
],
}
What is the principle behind this?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.