mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
446 B
TypeScript
25 lines
446 B
TypeScript
/*
|
|
* app.ts
|
|
* Copyright (C) 2024 veypi <i@veypi.com>
|
|
* 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
|
|
]
|
|
})
|
|
}
|
|
}
|