14 lines
578 B
JavaScript
14 lines
578 B
JavaScript
/**
|
|
* 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';
|