aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/src/main.tsx
diff options
context:
space:
mode:
authorEthan Mick <ethan@ethanmick.com>2025-09-15 12:33:08 -0400
committerEthan Mick <ethan@ethanmick.com>2025-09-15 12:33:08 -0400
commita30f727c95d7aa01e4a05091601067367e3b795b (patch)
tree663c309997058b4e54ac08e3f5e6b26cc31f6d5a /renderer/src/main.tsx
initial commit
Diffstat (limited to 'renderer/src/main.tsx')
-rw-r--r--renderer/src/main.tsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/renderer/src/main.tsx b/renderer/src/main.tsx
new file mode 100644
index 0000000..9a6b03b
--- /dev/null
+++ b/renderer/src/main.tsx
@@ -0,0 +1,4 @@
1import React from 'react'
2import { createRoot } from 'react-dom/client'
3
4createRoot(document.getElementById('root')!).render(<main>hi</main>)