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,42 @@
import { lazy } from "react";
import { lazyRetry } from "../utils/lazyRetry";
import {
ROUTE_CITY_COMMERCE_ROUTE_ALLOCATIONS,
ROUTE_CITY_COMMERCE_ROUTE_FILES_STATE,
ROUTE_CITY_COMMERCE_ROUTE_GUILDS,
ROUTE_CITY_COMMERCE_ROUTE_GUILDS_SETTINGS,
ROUTE_CITY_COMMERCE_ROUTE_MANAGE_GUILDS,
ROUTE_CITY_COMMERCE_ROUTE_STEWARDS,
} from "./routes";
const Guilds = lazy(() => lazyRetry(() => import("../pages/Guilds")));
const FilesState = lazy(() => lazyRetry(() => import("../pages/FilesState")));
const VetFarmAllocations = lazy(() =>
lazyRetry(() => import("../pages/VetFarmAllocations"))
);
export const cityCommerceRouting = [
{
path: [
ROUTE_CITY_COMMERCE_ROUTE_MANAGE_GUILDS,
ROUTE_CITY_COMMERCE_ROUTE_GUILDS,
ROUTE_CITY_COMMERCE_ROUTE_STEWARDS,
ROUTE_CITY_COMMERCE_ROUTE_GUILDS_SETTINGS,
],
Page: Guilds,
exact: false,
props: {},
},
{
path: [ROUTE_CITY_COMMERCE_ROUTE_FILES_STATE],
Page: FilesState,
exact: false,
props: {},
},
{
path: [ROUTE_CITY_COMMERCE_ROUTE_ALLOCATIONS],
Page: VetFarmAllocations,
exact: false,
props: {},
},
];