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
homepage.js 511 B
Newer Older
peter_rabbit's avatar
peter_rabbit committed
"use strict";

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

    render() {
        return {
            tag: "main",
            contents: [
                {
                    tag: "h1",
                    contents: "Kuadrado Software",
                },
                {
                    tag: "a",
                    href: "example/",
                    contents: "Example page",
                },
            ],
        };
    }
}

module.exports = HomePage;