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,56 @@
import { lazy } from "react";
import { lazyRetry } from "../utils/lazyRetry";
import {
ROUTE_VETFARM_HATCHING,
ROUTE_VETFARM_INSPECTIONS_ROUTE,
ROUTE_VETFARM_REGISTER_INFO,
ROUTE_VETFARM_ROUTE_ALLOCATIONS,
ROUTE_VETFARM_ROUTE_HATCHING,
} from "./routes";
const VetFarm = lazy(() => lazyRetry(() => import("../pages/VetFarm")));
const VetFarmAllocations = lazy(() =>
lazyRetry(() => import("../pages/VetFarmAllocations"))
);
const VetFarmInspections = lazy(() =>
lazyRetry(() => import("../pages/VetFarmInspections"))
);
const Hatching = lazy(() =>
lazyRetry(() => import("../pages/OperatorNewHatching"))
);
const ChickenHatching = lazy(() =>
lazyRetry(() => import("../pages/Hatching"))
);
export const vetFarmRouting = [
{
path: [ROUTE_VETFARM_HATCHING],
Page: ChickenHatching,
exact: false,
props: {},
},
{
path: [ROUTE_VETFARM_REGISTER_INFO],
Page: VetFarm,
exact: false,
props: {},
},
{
path: [ROUTE_VETFARM_INSPECTIONS_ROUTE],
Page: VetFarmInspections,
exact: false,
props: {},
},
{
path: [ROUTE_VETFARM_ROUTE_HATCHING],
Page: Hatching,
exact: false,
props: {},
},
{
path: [ROUTE_VETFARM_ROUTE_ALLOCATIONS],
Page: VetFarmAllocations,
exact: false,
props: {},
},
];