Appearance
React.Suspense
Suspense is a pseudo-component that allows to render the React Component even when it is not loaded yet. It is mostly used for defining the fallback UI.
Suspense
<Suspense fallback={FallbackComponent}> <LazyLoadedComponent /> </Suspense>