- Lazy loading is a new method in React that enables you to load React components lazily via code splitting without the use of any third-party libraries. The technique of rendering only needed or critical user interface objects first, then quietly loading the noncritical items later is known as lazy loading.
- It’s now completely integrated into the core React library. We used to do this with react-loadable, but now we have react.lazy() in React core.