import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App"; import { ErrorBoundary } from "./ErrorBoundary"; import { ToastProvider } from "./contexts/ToastContext"; import "./styles/global.css"; const rootEl = document.getElementById("root"); if (!rootEl) { document.body.innerHTML = "
Root element #root not found.
"; } else { ReactDOM.createRoot(rootEl).render(