import { createRoot } from "react-dom/client"; import App from "./App.tsx"; import "./index.css"; import "./lib/fontawesome"; const root = document.getElementById("root")!; createRoot(root).render();