1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-23 01:21:32 +02:00
send/app/pages/blank.js
2018-01-30 17:29:51 -08:00

7 lines
116 B
JavaScript

const html = require('choo/html');
module.exports = function() {
const div = html`<div></div>`;
return div;
};