const html = require('choo/html'); const controlArea = require('../../templates/controlArea'); const archiveTile = require('../../templates/archiveTile'); module.exports = function(state, emit) { const fileArea = state.storage.files.length ? html`` : html`
nothing to see here
`; return html`
${controlArea(state, emit)}

${state.translate('myUploads')}

${fileArea}
`; };