new static path

This commit is contained in:
Pritimay Sarkar
2023-08-17 21:41:04 +05:30
parent 47cc2de888
commit c4040961c8
3 changed files with 548 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import {
} from "react-router-dom";
import './index.css';
import App from './App';
import AppOp from './AppOp';
import reportWebVitals from './reportWebVitals';
import Devices from './components/Devices';
import TestAnalytics from './components/TestAnalytics';
@@ -37,7 +38,11 @@ const router = createBrowserRouter([
{
path: "/calibrations",
element: <Calibrations />,
}
},
{
path: "/op",
element: <AppOp />,
},
]);