Files
old-svijetlastrana-front/src/routes/selfRegister/index.js

9 lines
176 B
JavaScript
Raw Normal View History

2018-05-22 12:41:39 +02:00
module.exports = {
path: 'selfRegister',
getComponent(nextState, cb) {
require.ensure([], (require) => {
cb(null, require('./components/SignUp'));
});
}
};