feat: init ui module with index.html, app.js and styles

This commit is contained in:
2026-08-15 15:14:45 +00:00
parent 2fc7f9903b
commit 30f80b2bf1
3 changed files with 14 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head><title>UI Module</title></head>
<body>
<div id="app">Loading...</div>
<script src="src/app.js"></script>
</body>
</html>
+4
View File
@@ -0,0 +1,4 @@
console.log('UI App initialized');
export function render() {
document.getElementById('app').innerHTML = 'Hello from UI Module v1.0';
}
+2
View File
@@ -0,0 +1,2 @@
body { font-family: sans-serif; margin: 0; padding: 20px; }
#app { color: #333; }