Added Document Managment feature #388
@ -46,6 +46,9 @@ import MainResetPasswordPage from "../pages/authentication/MainResetPasswordPage
|
|||||||
import TenantPage from "../pages/Tenant/TenantPage";
|
import TenantPage from "../pages/Tenant/TenantPage";
|
||||||
import { Navigate } from "react-router-dom";
|
import { Navigate } from "react-router-dom";
|
||||||
import RootRedirect from "./RootRedirect";
|
import RootRedirect from "./RootRedirect";
|
||||||
|
import CreateTenant from "../pages/Tenant/CreateTenant";
|
||||||
|
import SuperTenantDetails from "../pages/Tenant/SuperTenantDetails";
|
||||||
|
import SelfTenantDetails from "../pages/Tenant/SelfTenantDetails";
|
||||||
const router = createBrowserRouter(
|
const router = createBrowserRouter(
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
@ -87,6 +90,9 @@ const router = createBrowserRouter(
|
|||||||
{ path: "/expenses", element: <ExpensePage /> },
|
{ path: "/expenses", element: <ExpensePage /> },
|
||||||
{ path: "/masters", element: <MasterPage /> },
|
{ path: "/masters", element: <MasterPage /> },
|
||||||
{ path: "/tenants", element: <TenantPage /> },
|
{ path: "/tenants", element: <TenantPage /> },
|
||||||
|
{ path: "/tenants/new-tenant", element: <CreateTenant /> },
|
||||||
|
{ path: "/tenant/:tenantId", element: <SuperTenantDetails /> },
|
||||||
|
{ path: "/tenant/self", element: <SelfTenantDetails /> },
|
||||||
{ path: "/help/support", element: <Support /> },
|
{ path: "/help/support", element: <Support /> },
|
||||||
{ path: "/help/docs", element: <Documentation /> },
|
{ path: "/help/docs", element: <Documentation /> },
|
||||||
{ path: "/help/connect", element: <Connect /> },
|
{ path: "/help/connect", element: <Connect /> },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user