We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3159be9 commit fab0b46Copy full SHA for fab0b46
content/docs/concurrent-mode-reference.md
@@ -53,10 +53,10 @@ Blocking Mode only contains a small subset of Concurrent Mode features and is in
53
### `Suspense` {#suspensecomponent}
54
55
```js
56
- <Suspense fallback={<h1>Loading...</h1>}>
57
- <ProfilePhoto />
58
- <ProfileDetails />
59
- </Suspense>
+<Suspense fallback={<h1>Loading...</h1>}>
+ <ProfilePhoto />
+ <ProfileDetails />
+</Suspense>
60
```
61
62
`Suspense` lets your components "wait" for something before they can render, showing a fallback while waiting.
0 commit comments