summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/serverView/serverPage.ts
blob: 622f633109a5649c6fb9fa743ee59e8c65899d68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import GameServer from "../server";

export class GameServerPage {
  constructor(protected server: GameServer) {}
  getPage(): HTMLElement {
    const content = document.createElement("div");
    content.classList.add("unknownServerPage");
    content.innerText = `Unknown page for${this.server.name}`;
    return content;
  }
}