1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-23 09:31:32 +02:00
send/app/pages/blank.js

7 lines
116 B
JavaScript
Raw Normal View History

const html = require('choo/html');
module.exports = function() {
2018-01-24 19:23:13 +01:00
const div = html`<div></div>`;
return div;
};