mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
15 lines
262 B
JavaScript
15 lines
262 B
JavaScript
class ManagerPage {
|
|
element;
|
|
|
|
constructor(options) {
|
|
this.element = document.createElement('div');
|
|
this.element.classList.add("manager-page");
|
|
}
|
|
|
|
getElement() {
|
|
return this.element;
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = ManagerPage; |