Importing RJSF lib with first application

This commit is contained in:
2025-04-07 22:54:05 +02:00
parent f93a59b27e
commit 661841ceef
19 changed files with 662 additions and 24 deletions

View File

@@ -23,7 +23,8 @@ import { ForgotPassword } from "./components/auth/ForgotPassword";
import { UpdatePassword } from "./components/auth/UpdatePassword";
import { Header } from "./components";
import {Hub} from "./pages/hub";
import { Hub } from "./pages/hub";
import { CreateFirm } from "./pages/hub/CreateFirm";
function App() {
return (
@@ -55,6 +56,7 @@ function App() {
)}
>
<Route path="/hub" element={ <Hub /> } />
<Route path="/hub/create-firm" element={ <CreateFirm /> } />
</Route>
<Route index element={<h1>HOME</h1>} />
<Route path="/login" element={<Login />} />