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

14 lines
286 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) {
2023-11-30 07:05:46 -05:00
super(params, "Posts");
2023-11-21 13:15:16 -05:00
}
async getHtml() {
return `
<h1>Posts</h1>
<p>You are viewing the posts!</p>
`;
}
}