feat: make layout, form, order pages and wizards (#6) (#13)

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:
2024-11-03 11:44:23 +03:00
committed by Ильназ
parent 6cf619d88e
commit 52c9ecd3c8
26 changed files with 2173 additions and 31 deletions

View File

@@ -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>
);
};