Newer
Older
"use strict";
class Example2 {
constructor(args) {
Object.assign(this, args);
}
render() {
return {
tag: "main",
contents: [
{
tag: "h1",
contents: "Example 2",
},
{
tag: "a",
href: "/public/",
contents: "Home",
},
{ tag: "br" },
{
tag: "a",
href: "../example/",
contents: "Example page",
},
],
};
}
}
module.exports = Example2;