ft_transcendence/frontend/static/js/views/Posts.js
2023-11-21 19:15:16 +01:00

15 lines
309 B
JavaScript

import AbstractView from "./AbstractView.js";
export default class extends AbstractView {
constructor(params) {
super(params);
this.setTitle("Posts");
}
async getHtml() {
return `
<h1>Posts</h1>
<p>You are viewing the posts!</p>
`;
}
}