mirror of
https://github.com/timvisee/send.git
synced 2025-10-04 10:09:17 +02:00
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
const html = require('choo/html');
|
|
|
|
module.exports = function(state) {
|
|
const div = html`<div id="page-one"></div>`;
|
|
if (state.layout) {
|
|
return state.layout(state, div);
|
|
}
|
|
return div;
|
|
};
|