This repository has been archived on 2025-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
layc/lib/Views/HtmlEngine.js

8 lines
101 B
JavaScript
Raw Normal View History

export default class HtmlEngine {
constructor() {}
render(tpl, context = {}) {
return tpl;
}
}