Created
April 26, 2021 11:25
-
-
Save mrtoluadesina/9e5b644dce69e8ee8287f62f186d23c2 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
// without lazy | |
import OtherComponent from './OtherComponent'; | |
// with lazy | |
const OtherComponent = React.lazy(() => import('./OtherComponent')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment