diff --git a/src/components/LayoutArm/LayoutArm.tsx b/src/components/LayoutArm/LayoutArm.tsx
index db48c23..da99da0 100644
--- a/src/components/LayoutArm/LayoutArm.tsx
+++ b/src/components/LayoutArm/LayoutArm.tsx
@@ -3,13 +3,19 @@ import Sidebar from '../Sidebar';
import Orders from '../Orders';
import Masters from '../Masters';
import React from 'react';
+import { Navigate, Route, Routes } from 'react-router-dom';
-const LayoutArm = ({ currentPage, onSelectPage }) => (
+const LayoutArm = () => (
-
+
- {currentPage === 'orders' && }
- {currentPage === 'masters' && }
+
+
+ } />
+ } />
+ } />
+
+
);
diff --git a/src/components/Sidebar/Sidebar.tsx b/src/components/Sidebar/Sidebar.tsx
index 86f64f5..9c3994d 100644
--- a/src/components/Sidebar/Sidebar.tsx
+++ b/src/components/Sidebar/Sidebar.tsx
@@ -2,7 +2,9 @@ import { Box, Button, Heading, VStack } from '@chakra-ui/react';
import React from 'react';
import { Divider } from '@chakra-ui/react';
import i18next from 'i18next';
-const Sidebar = ({ onSelectPage }) => (
+import { Link } from 'react-router-dom';
+
+const Sidebar = () => (
(
-
+
+
+
-
+
+
+
diff --git a/src/pages/arm/index.tsx b/src/pages/arm/index.tsx
index fda55d0..02d21c4 100644
--- a/src/pages/arm/index.tsx
+++ b/src/pages/arm/index.tsx
@@ -2,9 +2,7 @@ import React, { useState } from 'react';
import LayoutArm from '../../components/LayoutArm';
const Page = () => {
- const [currentPage, setCurrentPage] = useState('orders');
-
- return ;
+ return ;
};
export default Page;
diff --git a/src/routes.tsx b/src/routes.tsx
index ab2dbfa..77af977 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -16,9 +16,10 @@ const Routers = () => {
} />
} />
- }>
+ }>
+
);
};