init view

This commit is contained in:
2023-12-11 13:40:01 +01:00
parent f66b3883c1
commit 336257d1d0
3 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import AbstractView from "./AbstractView.js";
export default class extends AbstractView {
constructor(params) {
super(params, "Dashboard");
}
async getHtml() {
return `
<h1>finding<h1>
`;
}
}