mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Started wizard implementation
This commit is contained in:
15
manager/javascripts/managerpage.js
Normal file
15
manager/javascripts/managerpage.js
Normal file
@@ -0,0 +1,15 @@
|
||||
class ManagerPage {
|
||||
element;
|
||||
|
||||
constructor(options) {
|
||||
this.element = document.createElement('div');
|
||||
this.element.classList.add("manager-page");
|
||||
}
|
||||
|
||||
getElement() {
|
||||
return this.element;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = ManagerPage;
|
||||
Reference in New Issue
Block a user