Skip to content

Instantly share code, notes, and snippets.

@nightspirit
Last active August 29, 2019 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nightspirit/86047a482fefde4b93fac90c3ab59172 to your computer and use it in GitHub Desktop.
Save nightspirit/86047a482fefde4b93fac90c3ab59172 to your computer and use it in GitHub Desktop.
suspense - basic
const MyComponent = () => (
<Suspense fallback={<div>Loading...</div>}>
<AsyncComponent />
</Suspense>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment