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,12 +1,15 @@
import React from "react";
import { BrowserRouter } from "react-router-dom";
import Routers from "./routes";
import React from 'react';
import { BrowserRouter } from 'react-router-dom';
import Routers from './routes';
import { ChakraProvider, theme as chakraTheme } from '@chakra-ui/react';
const App = () => {
return (
<BrowserRouter>
<Routers></Routers>
</BrowserRouter>
<ChakraProvider theme={chakraTheme}>
<BrowserRouter>
<Routers></Routers>
</BrowserRouter>
</ChakraProvider>
);
};