"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;