lazy<P> function
Defers loading a component until it is rendered.
JavaScript and SSR renderers resolve the loader through React.lazy; wrap
the result in suspense when a visible loading state is required.
Implementation
LazyComponent<P> lazy<P>(LazyComponentLoader<P> load) => LazyComponent(load);