init view
This commit is contained in:
13
frontend/static/js/views/MatchMakingView.js
Normal file
13
frontend/static/js/views/MatchMakingView.js
Normal file
@ -0,0 +1,13 @@
|
||||
import AbstractView from "./AbstractView.js";
|
||||
|
||||
export default class extends AbstractView {
|
||||
constructor(params) {
|
||||
super(params, "Dashboard");
|
||||
}
|
||||
|
||||
async getHtml() {
|
||||
return `
|
||||
<h1>finding<h1>
|
||||
`;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user