# Loading components with React.lazy and Suspense To load a component asynchronously, create a `Loadable` file by hand or via component/container generators with the 'Do you want to load resources asynchronously?' option activated. This is the content of the file by default: ```JS import loadable from 'utils/loadable'; export default loadable(() => import('./index')); ``` In this case, the app won't show anything while loading your component. You can however make it display a custom loader with: ```JS import React from 'react'; import loadable from 'utils/loadable'; export default loadable(() => import('./index'), { fallback: