aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/web
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/web')
-rw-r--r--src/frontend/web/hello-world/index.css7
-rw-r--r--src/frontend/web/hello-world/index.html3
-rw-r--r--src/frontend/web/hello-world/index.js3
-rw-r--r--src/frontend/web/index.css4
-rw-r--r--src/frontend/web/index.html1
5 files changed, 18 insertions, 0 deletions
diff --git a/src/frontend/web/hello-world/index.css b/src/frontend/web/hello-world/index.css
new file mode 100644
index 0000000..41b0b29
--- /dev/null
+++ b/src/frontend/web/hello-world/index.css
@@ -0,0 +1,7 @@
+#container {
+ background: #efefef;
+ padding: 10px;
+ border-radius: 4px;
+ user-select: none;
+ cursor: pointer;
+}
diff --git a/src/frontend/web/hello-world/index.html b/src/frontend/web/hello-world/index.html
new file mode 100644
index 0000000..a9b0be7
--- /dev/null
+++ b/src/frontend/web/hello-world/index.html
@@ -0,0 +1,3 @@
+<div id="container" onclick="clicked()">
+ Click Me!
+</div>
diff --git a/src/frontend/web/hello-world/index.js b/src/frontend/web/hello-world/index.js
new file mode 100644
index 0000000..8e55c52
--- /dev/null
+++ b/src/frontend/web/hello-world/index.js
@@ -0,0 +1,3 @@
+function clicked() {
+ console.log('clicked');
+}
diff --git a/src/frontend/web/index.css b/src/frontend/web/index.css
new file mode 100644
index 0000000..a93ea47
--- /dev/null
+++ b/src/frontend/web/index.css
@@ -0,0 +1,4 @@
+body {
+ padding: 0;
+ margin: 0;
+}
diff --git a/src/frontend/web/index.html b/src/frontend/web/index.html
new file mode 100644
index 0000000..885f2c5
--- /dev/null
+++ b/src/frontend/web/index.html
@@ -0,0 +1 @@
+<z-component type="hello-world"></z-component>