Skip to content

Commit fab0b46

Browse files
authored
Update concurrent-mode-reference.md
1 parent 3159be9 commit fab0b46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/docs/concurrent-mode-reference.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ Blocking Mode only contains a small subset of Concurrent Mode features and is in
5353
### `Suspense` {#suspensecomponent}
5454

5555
```js
56-
<Suspense fallback={<h1>Loading...</h1>}>
57-
<ProfilePhoto />
58-
<ProfileDetails />
59-
</Suspense>
56+
<Suspense fallback={<h1>Loading...</h1>}>
57+
<ProfilePhoto />
58+
<ProfileDetails />
59+
</Suspense>
6060
```
6161

6262
`Suspense` lets your components "wait" for something before they can render, showing a fallback while waiting.

0 commit comments

Comments
 (0)