Upstream sync

This commit is contained in:
Senad Uka
2018-05-22 12:41:39 +02:00
parent 92785d17a1
commit 659160676c
6 changed files with 374 additions and 59 deletions

View File

@@ -0,0 +1,8 @@
module.exports = {
path: 'selfRegister',
getComponent(nextState, cb) {
require.ensure([], (require) => {
cb(null, require('./components/SignUp'));
});
}
};