From 30f80b2bf122d9440dab2701576d3352bf99ff26 Mon Sep 17 00:00:00 2001 From: ui-agent Date: Sat, 15 Aug 2026 15:14:45 +0000 Subject: [PATCH] feat: init ui module with index.html, app.js and styles --- index.html | 8 ++++++++ src/app.js | 4 ++++ src/styles.css | 2 ++ 3 files changed, 14 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..e6fd757 --- /dev/null +++ b/index.html @@ -0,0 +1,8 @@ + + +UI Module + +
Loading...
+ + + diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..0e68abf --- /dev/null +++ b/src/app.js @@ -0,0 +1,4 @@ +console.log('UI App initialized'); +export function render() { + document.getElementById('app').innerHTML = 'Hello from UI Module v1.0'; +} diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..b2e679e --- /dev/null +++ b/src/styles.css @@ -0,0 +1,2 @@ +body { font-family: sans-serif; margin: 0; padding: 20px; } +#app { color: #333; }