You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Named export 'LazyLoadImage' not found. The requested module 'react-lazy-load-image-component' is a CommonJS module, which may not support all module.exports as named expo rts. #121
import { LazyLoadImage } from 'react-lazy-load-image-component';
^^^^^^^^^^^^^
SyntaxError: Named export 'LazyLoadImage' not found. The requested module 'react-lazy-load-image-component' is a CommonJS module, which may not support all module.exports as named expo
rts.
CommonJS modules can always be imported via the default export, for example using:
import pkg from 'react-lazy-load-image-component';
const { LazyLoadImage } = pkg;