mirror of
https://gitlab.com/Alamantus/Readlebee.git
synced 2025-07-12 02:55:57 +02:00
11 lines
No EOL
197 B
JavaScript
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>`,
|
|
];
|
|
} |