mirror of
https://github.com/timvisee/send.git
synced 2025-10-03 01:39:31 +02:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
const html = require('choo/html');
|
|
|
|
module.exports = function() {
|
|
const div = html`<div id="page-one"></div>`;
|
|
return div;
|
|
};
|