class WTVTemplate {
page_args = {};
constructor(page_args) {
this.page_args = page_args;
}
getTemplatePage() {
var data = `
Web words: ${this.page_args.word}
${this.page_args.word}
|
| | |
|
|
|
|
|
|
|
|
|
|
${this.page_args.definition}
|
|
|
|
|
|
|
|
|
`;
return data;
}
}
module.exports = WTVTemplate;