Skip to content

Instantly share code, notes, and snippets.

@jamesseanwright
Created July 17, 2019 16:34
Show Gist options
  • Save jamesseanwright/65ce61e84707b19ac9144ef67b0405a0 to your computer and use it in GitHub Desktop.
Save jamesseanwright/65ce61e84707b19ac9144ef67b0405a0 to your computer and use it in GitHub Desktop.
React.lazy example
import * as React from 'react';
const Lorem = React.lazy(() => import('./pages/Lorem'));
const App = () => (
<React.Suspense fallback={<div className="loading-spinner" />}>
<Lorem />
</React.Suspense>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment