mirror of
https://github.com/timvisee/send.git
synced 2026-03-28 18:24:03 -04:00
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
const welcome = require('../pages/welcome');
|
|
const upload = require('../pages/upload');
|
|
|
|
module.exports = function(state, emit) {
|
|
if (state.uploading) {
|
|
return upload(state, emit);
|
|
}
|
|
return welcome(state, emit);
|
|
};
|