import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import { installDownloadBehaviorPatch } from "@/lib/installDownloadBehaviorPatch";
import "./index.css";

installDownloadBehaviorPatch();

createRoot(document.getElementById("root")!).render(<App />);
