summaryrefslogtreecommitdiffhomepage
path: root/src/components/index.jsx
blob: 0044916cbd348221a4730839f4b0bcc465ce7109 (plain)
1
2
3
4
5
6
7
8
9
10
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 />);
});