14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
import AbstractView from "./AbstractView.js";
|
|
|
|
export default class extends AbstractView {
|
|
constructor(params) {
|
|
super(params, "Posts");
|
|
}
|
|
|
|
async getHtml() {
|
|
return `
|
|
<h1>Posts</h1>
|
|
<p>You are viewing the posts!</p>
|
|
`;
|
|
}
|
|
} |