ft_transcendence/frontend/static/js/views/PageNotFoundView.js
2023-12-14 13:55:31 +01:00

15 lines
239 B
JavaScript

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>
`;
}
}