summaryrefslogtreecommitdiffhomepage
path: root/webui/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/index.tsx')
-rw-r--r--webui/src/index.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/webui/src/index.tsx b/webui/src/index.tsx
new file mode 100644
index 000000000..0a80fbdf0
--- /dev/null
+++ b/webui/src/index.tsx
@@ -0,0 +1,3 @@
+const rootEl = document.createElement("div")
+rootEl.textContent = "hello dev"
+document.body.append(rootEl)