2018-01-30 20:15:09 +00:00
|
|
|
const welcome = require('../pages/welcome');
|
|
|
|
const upload = require('../pages/upload');
|
2017-08-24 21:54:02 +00:00
|
|
|
|
|
|
|
module.exports = function(state, emit) {
|
2018-01-31 23:47:34 +00:00
|
|
|
if (state.uploading) {
|
2017-08-24 21:54:02 +00:00
|
|
|
return upload(state, emit);
|
|
|
|
}
|
|
|
|
return welcome(state, emit);
|
|
|
|
};
|