Reviewed-on: #13 Reviewed-by: Primakov Alexandr Alexandrovich <primakovpro@gmail.com> Reviewed-by: Rustam <kagapov.rustam@yandex.ru> Co-authored-by: ilnaz <237x237@gmail.com> Co-committed-by: ilnaz <237x237@gmail.com>
This commit was merged in pull request #13.
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import React from "react";
|
||||
import { Routes, Route } from "react-router-dom";
|
||||
import Arm from "./pages/arm";
|
||||
import Order from "./pages/order-view";
|
||||
import Landing from "./pages/landing";
|
||||
import React from 'react';
|
||||
import { Routes, Route } from 'react-router-dom';
|
||||
import Arm from './pages/arm';
|
||||
import Order from './pages/order-view';
|
||||
import Landing from './pages/landing';
|
||||
|
||||
const Routers = () => {
|
||||
return (
|
||||
<Routes>
|
||||
<Route path="/dry-wash-pl" element={<Landing />}></Route>
|
||||
<Route path="/dry-wash-pl/order" element={<Order />}></Route>
|
||||
<Route path="/dry-wash-pl/arm" element={<Arm />}></Route>
|
||||
<Route path='/dry-wash' element={<Landing />}></Route>
|
||||
<Route path='/dry-wash/order' element={<Order />}></Route>
|
||||
<Route path='/dry-wash/arm' element={<Arm />}></Route>
|
||||
</Routes>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user