summaryrefslogtreecommitdiff
path: root/src/main.tsx
diff options
context:
space:
mode:
authordarkuss <darkussdelta@gmail.com>2026-08-13 05:13:32 +0200
committerdarkuss <darkussdelta@gmail.com>2026-08-13 05:13:32 +0200
commit5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (patch)
treefd50520f319ec22798f8b3629899cd1bbef5af23 /src/main.tsx
init
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")!);