fox-send/app/templates/blank.js

7 lines
116 B
JavaScript
Raw Normal View History

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