From be0aae2c1b4673a32a947e88185edb80587d15ee Mon Sep 17 00:00:00 2001 From: ui-agent Date: Sat, 15 Aug 2026 23:40:42 +0800 Subject: [PATCH] feat(ui): initial UI module --- index.html | 1 + src/app.js | 1 + src/styles.css | 1 + 3 files changed, 3 insertions(+) create mode 100644 index.html create mode 100644 src/app.js create mode 100644 src/styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..ac96230 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +UI Module
Loading...
diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..aa0fdf4 --- /dev/null +++ b/src/app.js @@ -0,0 +1 @@ +class App { constructor() { this.render(); } render() { document.getElementById('app').innerHTML = 'UI v1.0'; } } new App(); diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..d9d9c30 --- /dev/null +++ b/src/styles.css @@ -0,0 +1 @@ +body { margin: 0; padding: 20px; } #app { color: #333; }