mirror of
https://github.com/timvisee/send.git
synced 2026-03-29 18:34:01 -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;
|
|
};
|