Skip to content

Instantly share code, notes, and snippets.

@ChettaDarkkill
Created August 15, 2019 15:06
Show Gist options
  • Select an option

  • Save ChettaDarkkill/c66b7a3d7eca29525e6e541295cc68a9 to your computer and use it in GitHub Desktop.

Select an option

Save ChettaDarkkill/c66b7a3d7eca29525e6e541295cc68a9 to your computer and use it in GitHub Desktop.
const OtherComponent = React.lazy(() => import('./OtherComponent'));
function MyComponent() {
return (
<div>
<Suspense fallback={<div>Loading...</div>}>
<OtherComponent />
</Suspense>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment