Skip to content

Instantly share code, notes, and snippets.

View VinayakBagaria's full-sized avatar
💭
So much to experiment on..

Vinayak Bagaria VinayakBagaria

💭
So much to experiment on..
View GitHub Profile
@VinayakBagaria
VinayakBagaria / app.js
Created October 2, 2018 17:33 — forked from acdlite/app.js
Quick and dirty code splitting with React Router v4
// getComponent is a function that returns a promise for a component
// It will not be called until the first mount
function asyncComponent(getComponent) {
return class AsyncComponent extends React.Component {
static Component = null;
state = { Component: AsyncComponent.Component };
componentWillMount() {
if (!this.state.Component) {
getComponent().then(Component => {