Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
games.js 495 B
Newer Older
peter_rabbit's avatar
peter_rabbit committed
"use strict";

class GamesPage {
    constructor(args) {
        Object.assign(this, args);
    }

    render() {
        return {
            tag: "div",
            contents: [
                {
peter_rabbit's avatar
peter_rabbit committed
                    tag: "div",
                    class: "page-header",
                    contents: [
                        { tag: "h1", contents: "Jeux", class: "page-contents-center" }
                    ],
peter_rabbit's avatar
peter_rabbit committed
                },
            ],
        };
    }
}

module.exports = GamesPage;