Browse Source

fix typo in concurrent mode/suspense blog post (#2565)

main
Kent C. Dodds 5 years ago
committed by Alexey Pyltsyn
parent
commit
4dfde3eb02
  1. 2
      content/blog/2019-11-06-building-great-user-experiences-with-concurrent-mode-and-suspense.md

2
content/blog/2019-11-06-building-great-user-experiences-with-concurrent-mode-and-suspense.md

@ -194,7 +194,7 @@ function Post(props) {
<div> <div>
<h1>{postData.title}</h1> <h1>{postData.title}</h1>
<h2>by {postData.author}</h2> <h2>by {postData.author}</h2>
{/* @defer pairs naturally w <Suspense> to make the UI non-blocking too */} {/* @defer pairs naturally with <Suspense> to make the UI non-blocking too */}
<Suspense fallback={<Spinner/>}> <Suspense fallback={<Spinner/>}>
<CommentList post={postData} /> <CommentList post={postData} />
</Suspense> </Suspense>

Loading…
Cancel
Save