first commit
Some checks failed
Build / run (push) Has been cancelled

This commit is contained in:
maher
2025-10-29 11:42:25 +01:00
commit 703f50a09d
4595 changed files with 385164 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import {Route} from 'react-router-dom';
import {PricingPage} from './pricing-table/pricing-page';
import React, {Fragment} from 'react';
import {FullPageLoader} from '../ui/progress/full-page-loader';
const BillingPageRoutes = React.lazy(
() => import('./billing-page/billing-page-routes')
);
const CheckoutRoutes = React.lazy(() => import('./checkout/checkout-routes'));
export const BillingRoutes = (
<Fragment>
<Route path="/pricing" element={<PricingPage />} />
<Route
path="checkout/*"
element={
<React.Suspense fallback={<FullPageLoader screen />}>
<CheckoutRoutes />
</React.Suspense>
}
/>
<Route
path="billing/*"
element={
<React.Suspense fallback={<FullPageLoader screen />}>
<BillingPageRoutes />
</React.Suspense>
}
/>
</Fragment>
);