feat: integrate Stripe payment module with API + UI components

This commit is contained in:
2026-06-09 21:10:57 +05:30
parent 944a745892
commit 5eb06b2809
25 changed files with 1434 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* Payments Module — public surface.
*
* Self-contained Stripe Checkout integration. Import from here so the rest of
* the app never reaches into the module internals.
*/
export { default as PaymentsPage } from './pages/PaymentsPage';
export { default as PaymentSuccess } from './pages/PaymentSuccess';
export { default as PaymentCancelled } from './pages/PaymentCancelled';
export { default as DemoCheckout } from './pages/DemoCheckout';
export { PaymentProvider, usePayments } from './context/PaymentProvider';
export { stripeConfig } from './config/stripeConfig';