add: 404 not found

This commit is contained in:
AdrienLSH
2023-12-14 13:55:31 +01:00
parent 072c97d1c0
commit c303042588
2 changed files with 19 additions and 1 deletions

View File

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