Last active
July 12, 2017 13:55
-
-
Save notgiorgi/a3ced93a4c83be5dbdb1c73d04cc9a5d 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
| withLazyLoading( | |
| () => import('./features/Post'), | |
| <Loading type="spinner" /> | |
| ) | |
| // We can name the chunk | |
| withLazyLoading( | |
| () => import(/* webpackChunkName: "Post" */ './features/Post'), | |
| <Loading type="spinner" /> | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment