Use toasts for errors unassociated with a tab

This commit is contained in:
Justin Spahr-Summers
2024-11-12 13:41:08 +00:00
parent 9d0c643926
commit 3bae26723a
2 changed files with 24 additions and 11 deletions

View File

@@ -1,10 +1,13 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { ToastContainer } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
import App from "./App.tsx";
import "./index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
<ToastContainer />
</StrictMode>,
);