Skip to content

Commit

Permalink
Added closing tag to <Suspense> (#30983)
Browse files Browse the repository at this point in the history
There was no closing tag for the first `<Suspense>` tag.
  • Loading branch information
EzequielDM committed Nov 4, 2021
1 parent ad6b9c2 commit 5db9d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/advanced-features/react-18.md
Expand Up @@ -47,7 +47,7 @@ export default function Home() {
<Suspense fallback={<Spinner />}>
{/* A component that uses Suspense-based */}
<Content />
<Suspense>
</Suspense>
<Suspense fallback={<Spinner />}>
<Profile />
</Suspense>
Expand Down

0 comments on commit 5db9d09

Please sign in to comment.