Newer
Older
"use strict";
class SoftwareDevelopment {
constructor(args) {
Object.assign(this, args);
}
render() {
return {
tag: "div",
contents: [
{
tag: "h1",
contents: "Software",
},
],
};
}
}
module.exports = SoftwareDevelopment;