Merge module/ui
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
# Agent Collaboration Test
|
||||||
@@ -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>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
console.log('UI App initialized');
|
||||||
|
export function render() {
|
||||||
|
document.getElementById('app').innerHTML = 'Hello from UI Module v1.0';
|
||||||
|
}
|
||||||
|
// valid update
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
body { font-family: sans-serif; margin: 0; padding: 20px; }
|
||||||
|
#app { color: #333; }
|
||||||
Reference in New Issue
Block a user