Created
September 19, 2020 12:05
-
-
Save StevenLangbroek/23a5581fe42dda65c40bf580c9d1c42c to your computer and use it in GitHub Desktop.
Suspense is easier with components
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<React.Suspense fallback={<ProgressIndicator />}> | |
<Query query={RECENT_POSTS}> | |
{(result) => <Post result={result.data.post} />} | |
</Query> | |
</React.Suspense> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment