ui imrpovement, system parameter, navbar

This commit is contained in:
Harish Sargar
2025-04-02 19:39:36 +05:30
parent 1ce1c27f8c
commit a7965fc12f
14 changed files with 957 additions and 853 deletions

View File

@@ -1,6 +1,7 @@
import React from "react";
import { SystemParameterProvider } from './context/SystemParameterContext';
import {
BrowserRouter,
Route,
@@ -62,11 +63,12 @@ import DashboardRunner from "components/Dashboard/dashboardRunner/dashboardRunne
const App = () => {
return (
<SystemParameterProvider>
<div>
{/* ToastContainer should be placed in the root component */}
<ToastContainer
position="top-right"
autoClose={3000}
autoClose={1500}
hideProgressBar={false}
newestOnTop
closeOnClick
@@ -140,6 +142,7 @@ const App = () => {
</Routes>
</BrowserRouter>
</div>
</SystemParameterProvider>
);
};