mirror of
https://github.com/timvisee/send.git
synced 2026-04-02 19:14:04 -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;
|
|
};
|