push rasad front on new repo

This commit is contained in:
2026-01-18 14:32:49 +03:30
commit 4fe6e70525
2139 changed files with 303150 additions and 0 deletions

View 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: {},
},
];