ft_transcendence/srcs/frontend/static/js/views/Settings.js

15 lines
327 B
JavaScript
Raw Normal View History

2023-11-23 10:43:30 -05:00
import AbstractView from "./AbstractView.js";
export default class extends AbstractView {
constructor(params) {
super(params);
this.setTitle("Settings");
}
async getHtml() {
return `
<h1>Settings</h1>
<p>Manage your privacy and configuration.</p>
`;
}
}