import { lang } from "../index.js"; import AbstractView from './abstracts/AbstractView.js' export default class extends AbstractView { constructor(params) { super(params, 'homeWindowTitle'); } async getHtml() { return /* HTML */ `

${lang.get('homeTitle', 'Home')}

${lang.get('homeOnline')} ${lang.get('homePongOffline')} ${lang.get('homeTicTacToeOffline')} `; } }