Skip to content

Instantly share code, notes, and snippets.

@dash1291
Created September 16, 2017 15:42
Show Gist options
  • Save dash1291/6a1edf07f2d95974337272208bf28e5d to your computer and use it in GitHub Desktop.
Save dash1291/6a1edf07f2d95974337272208bf28e5d to your computer and use it in GitHub Desktop.
Snippet of async routes
const routes = [
{
path: ‘checkout’,
getComponent: (location, callback) => {
require.ensure([], (require) => {
callback(null, require(‘./Checkout/containers’).default);
}, ‘checkout’);
},
name: ‘checkout’
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment