/* * app.ts * Copyright (C) 2024 veypi * 2024-10-23 15:35 * Distributed under terms of the GPL license. */ import b from "./build"; export default class { main: HTMLElement body: HTMLElement constructor() { this.body = b('voa-apps-body') this.main = b({ class: 'voa-apps', children: [ b({ class: 'voa-apps-header', children: [b('voa-apps-title')] }), this.body ] }) } }