🗒️ Added scaffold for the toast notification

This commit is contained in:
2024-07-02 22:10:16 -04:00
parent e2f1d5a307
commit c6c3f2eaf7
3 changed files with 10 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
import React, { ReactElement } from "react";
import { Outlet } from "react-router-dom";
import { Navbar2 } from "./shared/Navbar2";
import {ToastContainer} from "react-toastify";
import { ToastContainer } from "react-toastify";
import "../assets/scss/App.scss";
export const App = (): ReactElement => {
@@ -9,7 +9,7 @@ export const App = (): ReactElement => {
<>
<Navbar2 />
<Outlet />
<ToastContainer />
<ToastContainer stacked hideProgressBar />
</>
);
};