feat: add router to the arm page (#14)

This commit is contained in:
2024-11-09 19:34:12 +03:00
parent e4969938c3
commit 04e4d011ff
4 changed files with 26 additions and 25 deletions

View File

@@ -16,9 +16,10 @@ const Routers = () => {
<Route path='order-form' element={<OrderForm />} />
<Route path='order-view' element={<OrderView />} />
</Route>
<Route path='/dry-wash/arm' element={<Arm />}></Route>
<Route path='/dry-wash/arm/*' element={<Arm />}></Route>
</Routes>
</Suspense>
);
};