Answers about suspense
Questions and answers from the Croct community about suspense.
0
useContent suspends and blanks my whole page, how do I scope the Suspense boundary?
I have a single <Suspense> boundary wrapping the whole page, and every useContent call inside it suspends the entire view until all of the slots resolve. So…
3
Streaming SSR with a Suspense boundary around each personalized section, good idea or overkill?
News site, aggressive perf targets. Home page has a static shell plus three personalized sections (top stories rail, mid-page promo, newsletter block), each a…
0
useContent makes my whole page wait in Next.js, how do I stream just the slot?
hey folks, coming from React Native so web rendering is still a bit new to me. I have a client component that calls useContent('promo-banner') and while the…
3
Page goes blank when I add useContent, no error in console
Adding useContent to our React app (old CRA setup) makes the componet tree render nothing while content loads. No error in the console, the page is just blank…