Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ | Rejoignez-nous sur le Chat
"use strict"; class GamesPage { constructor(args) { Object.assign(this, args); } render() { return { tag: "div", contents: [ { tag: "h1", contents: "Games", }, ], }; } } module.exports = GamesPage;