mirror of
https://github.com/timvisee/send.git
synced 2026-03-28 18:24:03 -04:00
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
const html = require('choo/html');
|
|
|
|
module.exports = function() {
|
|
const div = html`<div></div>`;
|
|
return div;
|
|
};
|