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