diff --git a/content/docs/concurrent-mode-patterns.md b/content/docs/concurrent-mode-patterns.md index c36bb3f03..2f4e49961 100644 --- a/content/docs/concurrent-mode-patterns.md +++ b/content/docs/concurrent-mode-patterns.md @@ -390,6 +390,7 @@ After the click, React started rendering the next screen: + ``` @@ -403,6 +404,7 @@ Both `` and `` need data to render, so they sus {/* suspends! */} Loading posts...}> {/* suspends! */} + ``` @@ -419,6 +421,7 @@ When a component suspends, React needs to show the closest fallback. But the clo {/* suspends! */} + ``` @@ -437,6 +440,7 @@ As we load more data, React will retry rendering, and `` can ren

Loading posts...

}> {/* suspends! */} + ```