ft_transcendence/frontend/static/js/views/AbstractView.js

17 lines
220 B
JavaScript

export default class {
constructor(params) {
this.params = params;
}
async postInit() {
}
setTitle(title) {
document.title = title;
}
async getHtml() {
return "";
}
}