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,7 +1,10 @@
import React from "react";
import React, { useState } from 'react';
import LayoutArm from '../../components /LayoutArm';
const Page = () => {
return <h1>Arm </h1>;
const [currentPage, setCurrentPage] = useState('orders');
return <LayoutArm currentPage={currentPage} onSelectPage={setCurrentPage} />;
};
export default Page;