8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
export { … as default}
With webpack 5.100.1 ESM export ends with
/* harmony default export */ const src = (calendar); export { src as default };
It would be optimal to replace it with
export default calendar;