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