summaryrefslogtreecommitdiff
path: root/src/main.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.tsx')
-rw-r--r--src/main.tsx6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.tsx b/src/main.tsx
new file mode 100644
index 0000000..43494a2
--- /dev/null
+++ b/src/main.tsx
@@ -0,0 +1,6 @@
+import { render } from "preact";
+import { App } from "./app";
+
+import 'temporal-polyfill/global'
+
+render(<App/>, document.getElementById("root")!);