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