1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-21 08:31:31 +02:00
send/app/routes/home.js

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);
};