feat(project) cleanup, removed dependencies, updated structure

This commit is contained in:
Benjamin Wegener
2023-12-08 02:05:23 +00:00
parent 8aeea132a5
commit 07fa57f178
18 changed files with 853 additions and 173 deletions

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

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