Ignore:
Timestamp:
01/27/26 15:56:00 (6 months ago)
Author:
Dimitar Arsov <dimitararsov04@…>
Branches:
main
Children:
6de2873
Parents:
77e572b (diff), 16aed54 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'main' into follow-user

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/App.tsx

    r77e572b rc1d2f07  
    11import { createBrowserRouter, Outlet, RouterProvider } from "react-router-dom";
     2import { ToastContainer } from "react-toastify";
     3import "react-toastify/dist/ReactToastify.css";
    24import AllUsers from "./pages/AllUsers";
    35import LandingPage from "./pages/LandingPage";
     
    1113                <div className="flex flex-col min-h-screen">
    1214                        <Nav />
     15                        <ToastContainer
     16                                position="top-right"
     17                                autoClose={2000}
     18                                hideProgressBar={false}
     19                                newestOnTop={false}
     20                                closeOnClick
     21                                rtl={false}
     22                                pauseOnFocusLoss
     23                                draggable
     24                                pauseOnHover
     25                                theme="light"
     26                        />
    1327                        <main className="grow">
    1428                                <Outlet />
Note: See TracChangeset for help on using the changeset viewer.