Was experimenting with <React.Suspense fallback={...} /> and it seems that the ReactLoadableComponent still flickers a bit between the rendering of fallback and then the resolved component. Suspect that it's related to the fact that only after another setState the component is actually rendered.
Was experimenting with
<React.Suspense fallback={...} />
and it seems that the ReactLoadableComponent still flickers a bit between the rendering offallback
and then the resolved component. Suspect that it's related to the fact that only after another setState the component is actually rendered.