push rasad front on new repo
This commit is contained in:
16
src/routes/cityGuildRouting.js
Normal file
16
src/routes/cityGuildRouting.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import { lazy } from "react";
|
||||
import { lazyRetry } from "../utils/lazyRetry";
|
||||
import { ROUTE_SENF_INVENTORY, ROUTE_SENF_INVENTORY_STOCK } from "./routes";
|
||||
|
||||
const SenfInventoryPage = lazy(() =>
|
||||
lazyRetry(() => import("../pages/SenfInventoryPage"))
|
||||
);
|
||||
|
||||
export const cityGuildRouting = [
|
||||
{
|
||||
path: [ROUTE_SENF_INVENTORY, ROUTE_SENF_INVENTORY_STOCK],
|
||||
Page: SenfInventoryPage,
|
||||
exact: false,
|
||||
props: {},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user