push rasad front on new repo
This commit is contained in:
36
src/routes/unionRouting.js
Normal file
36
src/routes/unionRouting.js
Normal file
@@ -0,0 +1,36 @@
|
||||
import { lazy } from "react";
|
||||
import { lazyRetry } from "../utils/lazyRetry";
|
||||
import {
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION,
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION_ALLOCATION,
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION_POLICY,
|
||||
ROUTE_UNION_PRODUCT_TRANSACTIONS,
|
||||
ROUTE_UNION_COOPERATIVES,
|
||||
ROUTE_UNION_HERDS,
|
||||
ROUTE_UNION_RANCHERS,
|
||||
ROUTE_UNION_SELL_REPORT,
|
||||
ROUTE_UNION_USERS,
|
||||
} from "./routes";
|
||||
|
||||
const RequestsPage = lazy(() =>
|
||||
lazyRetry(() => import("../pages/ProvinceJahadRequests"))
|
||||
);
|
||||
|
||||
export const unionRouting = [
|
||||
{
|
||||
path: [
|
||||
ROUTE_UNION_COOPERATIVES,
|
||||
ROUTE_UNION_RANCHERS,
|
||||
ROUTE_UNION_HERDS,
|
||||
ROUTE_UNION_USERS,
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION,
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION_ALLOCATION,
|
||||
ROUTE_UNION_PRODUCT_DISTRIBUTION_POLICY,
|
||||
ROUTE_UNION_PRODUCT_TRANSACTIONS,
|
||||
ROUTE_UNION_SELL_REPORT,
|
||||
],
|
||||
Page: RequestsPage,
|
||||
exact: false,
|
||||
props: {},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user