Compare commits
3 Commits
7f33e165bd
...
module/ui
| Author | SHA1 | Date | |
|---|---|---|---|
| 9ec7bb3aeb | |||
| 491634560c | |||
| 30f80b2bf1 |
@@ -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>
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
console.log('UI App initialized');
|
||||
console.log('UI Module v1.0.0-rc1 - incrementally synced');
|
||||
|
||||
export function render() {
|
||||
document.getElementById('app').innerHTML = 'Hello from UI Module v1.0.0-rc1';
|
||||
}
|
||||
|
||||
export function getVersion() {
|
||||
return '1.0.0-rc1';
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
/* UI Module Styles v1.0.0-rc1 */
|
||||
body { font-family: sans-serif; margin: 0; padding: 20px; background: #f9f9f9; }
|
||||
#app { color: #333; }
|
||||
.header { border-bottom: 2px solid #007bff; padding-bottom: 10px; margin-bottom: 20px; }
|
||||
Reference in New Issue
Block a user