const html = require('choo/html'); export default function mainPage(state, emit) { function clickPreferences(event) { event.preventDefault(); emit('pushState', '/preferences'); } function uploadFile(event) { event.preventDefault(); const target = event.target; const file = target.files[0]; if (file.size === 0) { return; } emit('pushState', '/upload'); emit('addFiles', { files: [file] }); emit('upload', {}); } return html`
preferenes

Private, Encrypted File Sharing

Send files through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.
`; }