Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created October 29, 2018 01:55
Show Gist options
  • Save isacjunior/af484732a8f6e5f4ccd1b18a3ffee3ae to your computer and use it in GitHub Desktop.
Save isacjunior/af484732a8f6e5f4ccd1b18a3ffee3ae to your computer and use it in GitHub Desktop.
import React, { Suspense, lazy } from 'react'
function LazyImport(Component) {
const ComponentLoadable = lazy(Component)
return props => (
<Suspense fallback={<div>Loading...</div>}>
<ComponentLoadable {...props} />
</Suspense>
);
}
export default LazyImport
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment