1
0
Fork 0
mirror of https://gitlab.com/Alamantus/Readlebee.git synced 2025-07-12 02:55:57 +02:00
Readlebee/app/views/shelves/shelf.js

11 lines
No EOL
197 B
JavaScript

import html from 'choo/html';
export const shelfView = (homeController, emit) => {
const { __ } = homeController.i18n;
return [
html`<section>
<h2>To Do</h2>
</section>`,
];
}