React.lazy()
React.lazy()
allows to load components asynchronously in react.
It returns the component that was loaded asynchronously in the background. It is mandatory to add react.Suspense component that defines the fallback UI for when the component isn't loaded.