clean: remove trash file

This commit is contained in:
starnakin 2023-12-12 15:21:06 +01:00
parent 243c5f266a
commit a15c59fbf7

View File

@ -1,14 +0,0 @@
import AbstractView from "./AbstractView.js";
export default class extends AbstractView {
constructor(params) {
super(params, "Settings");
}
async getHtml() {
return `
<h1>Settings</h1>
<p>Manage your privacy and configuration.</p>
`;
}
}