"use strict"; class GamesPage { constructor(args) { Object.assign(this, args); } render() { return { tag: "div", contents: [ { tag: "h1", contents: "Games", }, ], }; } } module.exports = GamesPage;