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

17 lines
220 B
JavaScript
Raw Normal View History

2023-11-21 13:15:16 -05:00
export default class {
constructor(params) {
this.params = params;
}
async postInit() {
}
2023-11-21 13:15:16 -05:00
setTitle(title) {
document.title = title;
}
async getHtml() {
return "";
}
}