mirror of
https://github.com/timvisee/send.git
synced 2025-10-04 10:09:17 +02:00
6 lines
116 B
JavaScript
6 lines
116 B
JavaScript
const html = require('choo/html');
|
|
|
|
module.exports = function() {
|
|
const div = html`<div></div>`;
|
|
return div;
|
|
};
|