fix should be getChildRoutes

fix fromNodeCallback returns array of values from callback
fix remove require.ensure - needs to be tested
This commit is contained in:
Berkeley Martinez
2015-07-03 17:40:12 -07:00
parent 2b80cdbbdc
commit bb37583c90
8 changed files with 76 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
import Mobile from './components/Mobile.jsx';
export default {
path: 'mobile',
getComponents(cb) {
setTimeout(() => {
cb(null, Mobile);
}, 0);
}
};