summaryrefslogtreecommitdiffhomepage
path: root/src/components/index.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/index.jsx')
-rw-r--r--src/components/index.jsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/components/index.jsx b/src/components/index.jsx
deleted file mode 100644
index 0044916..0000000
--- a/src/components/index.jsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import React from "react";
-import { createRoot } from "react-dom/client";
-import App from "./App";
-
-document.addEventListener("turbo:load", () => {
- const root = createRoot(
- document.body.appendChild(document.createElement("div"))
- );
- root.render(<App />);
-});