Skip to content

Instantly share code, notes, and snippets.

@viclotana
Created October 25, 2018 15:36
Show Gist options
  • Save viclotana/23aa64d28663fc57d853629d46878ad7 to your computer and use it in GitHub Desktop.
Save viclotana/23aa64d28663fc57d853629d46878ad7 to your computer and use it in GitHub Desktop.
import React, {lazy, Suspense} from 'react';
const OtherComponent = lazy(() => import('./OtherComponent'));
function MyComponent() {
return (
<Suspense fallback={<div>Loading...</div>}>
<OtherComponent />
</Suspense>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment