add analytics page for tests conducted

- add robot.txt entry
  - fix graph render with new set of actions
This commit is contained in:
prisar
2023-07-23 02:42:53 +05:30
parent 7d9ae020af
commit 413a6b1455
9 changed files with 293 additions and 15 deletions

View File

@@ -8,6 +8,7 @@ import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import Devices from './components/Devices';
import TestAnalytics from './components/TestAnalytics';
const router = createBrowserRouter([
{
@@ -21,6 +22,10 @@ const router = createBrowserRouter([
{
path: "/insights",
element: <Devices />,
},
{
path: "/analytics",
element: <TestAnalytics />,
}
]);