Skip to content

Instantly share code, notes, and snippets.

View sriramrudraraju's full-sized avatar

Sriram Rudraraju sriramrudraraju

  • Bentonville, AR
View GitHub Profile
@sriramrudraraju
sriramrudraraju / app.js
Last active August 2, 2017 18:35 — 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 => {