initially added pages for AdvancePayment and Payment Request
This commit is contained in:
parent
02777a8f47
commit
465b67e25c
11
src/pages/AdvancePayment/AdvancePaymentPage.jsx
Normal file
11
src/pages/AdvancePayment/AdvancePaymentPage.jsx
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import React from 'react'
|
||||||
|
|
||||||
|
const AdvancePaymentPage = () => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default AdvancePaymentPage
|
||||||
14
src/pages/PaymentRequest/PaymentRequestPage.jsx
Normal file
14
src/pages/PaymentRequest/PaymentRequestPage.jsx
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import React from "react";
|
||||||
|
import Breadcrumb from "../../components/common/Breadcrumb";
|
||||||
|
|
||||||
|
const PaymentRequestPage = () => {
|
||||||
|
return (
|
||||||
|
<div className="container-fluid">
|
||||||
|
<Breadcrumb data={[{ label: "Home", link: "/" }, { label: "Finance", link: "/Payment Request" } ,{ label: "Payment Request" }]} />
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default PaymentRequestPage;
|
||||||
@ -54,6 +54,8 @@ import DailyProgrssReport from "../pages/DailyProgressReport/DailyProgrssReport"
|
|||||||
import ProjectPage from "../pages/project/ProjectPage";
|
import ProjectPage from "../pages/project/ProjectPage";
|
||||||
import { ComingSoonPage } from "../pages/Misc/ComingSoonPage";
|
import { ComingSoonPage } from "../pages/Misc/ComingSoonPage";
|
||||||
import CollectionPage from "../pages/collections/CollectionPage";
|
import CollectionPage from "../pages/collections/CollectionPage";
|
||||||
|
import AdvancePaymentPage from "../pages/AdvancePayment/AdvancePaymentPage";
|
||||||
|
import PaymentRequestPage from "../pages/PaymentRequest/PaymentRequestPage";
|
||||||
const router = createBrowserRouter(
|
const router = createBrowserRouter(
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
@ -98,6 +100,8 @@ const router = createBrowserRouter(
|
|||||||
{ path: "/expenses/:status?/:project?", element: <ExpensePage /> },
|
{ path: "/expenses/:status?/:project?", element: <ExpensePage /> },
|
||||||
{ path: "/collection", element: <CollectionPage /> },
|
{ path: "/collection", element: <CollectionPage /> },
|
||||||
{ path: "/expenses", element: <ExpensePage /> },
|
{ path: "/expenses", element: <ExpensePage /> },
|
||||||
|
{ path: "/payment-request", element: <PaymentRequestPage /> },
|
||||||
|
{ path: "/advance-payment", element: <AdvancePaymentPage /> },
|
||||||
{ path: "/masters", element: <MasterPage /> },
|
{ path: "/masters", element: <MasterPage /> },
|
||||||
{ path: "/tenants", element: <TenantPage /> },
|
{ path: "/tenants", element: <TenantPage /> },
|
||||||
{ path: "/tenants/new-tenant", element: <CreateTenant /> },
|
{ path: "/tenants/new-tenant", element: <CreateTenant /> },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user