feat(ui): initial UI module

This commit is contained in:
ui-agent
2026-08-15 23:40:42 +08:00
parent 9f57505f47
commit be0aae2c1b
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
<html><head><title>UI Module</title></head><body><div id='app'>Loading...</div></body></html>
+1
View File
@@ -0,0 +1 @@
class App { constructor() { this.render(); } render() { document.getElementById('app').innerHTML = 'UI v1.0'; } } new App();
+1
View File
@@ -0,0 +1 @@
body { margin: 0; padding: 20px; } #app { color: #333; }