You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using `Suspense` and `React.lazy()`, we isolated entire sections of the page and lazy load them.
Note that Suspense is wrapped around each of the lazy components. That ensures separate async threads.
Suspense is not wrapping the entire app because that would cause Menu and Hero to wait for the other components to load before rendering.
Instead, we focus on rendering Hero and Menu first.
0 commit comments