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; }