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,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;
|
||||
|
||||
Reference in New Issue
Block a user