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;