Created
January 24, 2019 19:13
-
-
Save Zizzamia/1482090fa0a7db89fb5ba1f71d6e6cb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Loadable from 'react-loadable'; | |
export const LazyListComponent = Loadable({ | |
loader: () => import(/* webpackChunkName: "listComponent" */ './ListComponent'), | |
loading: () => null, | |
delay: 300, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment