ft_transcendence/frontend/static/js/views/Posts.js

15 lines
309 B
JavaScript
Raw Normal View History

2023-11-21 13:15:16 -05:00
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>
`;
}
}