feat(ui): initial UI module
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<html><head><title>UI Module</title></head><body><div id='app'>Loading...</div></body></html>
|
||||
@@ -0,0 +1 @@
|
||||
class App { constructor() { this.render(); } render() { document.getElementById('app').innerHTML = 'UI v1.0'; } } new App();
|
||||
@@ -0,0 +1 @@
|
||||
body { margin: 0; padding: 20px; } #app { color: #333; }
|
||||
Reference in New Issue
Block a user