Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created July 6, 2018 08:27
Show Gist options
  • Save MicroBenz/78ba993985c28be769a22606cfd6209d to your computer and use it in GitHub Desktop.
Save MicroBenz/78ba993985c28be769a22606cfd6209d to your computer and use it in GitHub Desktop.
React Code Splitting
import Loadable from 'react-loadable';
const Bar = Loadable({
loader: () => import('./components/Bar'),
loading: () => <div>Loading...</div>
});
class MyComponent extends React.Component {
render() {
return <Bar />;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment