chore(project) cleanup; structure adjustments; preparational work

This commit is contained in:
Benjamin Wegener
2024-01-20 04:59:20 +00:00
parent bbac46c642
commit 494787dee2
15 changed files with 109 additions and 48 deletions

7
src/Views/HtmlEngine.js Normal file
View File

@@ -0,0 +1,7 @@
export default class HtmlEngine {
constructor() {}
render(tpl, context = {}) {
return tpl;
}
}