refactor wip

This commit is contained in:
Timur Gordon
2025-06-28 16:40:54 +02:00
parent 21dcc4d97a
commit c1ea9483d7
15 changed files with 2320 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
//! Common reusable components for forms, payments, and UI elements
pub mod forms;
pub mod payments;
pub mod ui;
// Re-export commonly used items
pub use forms::{MultiStepForm, FormStep, StepValidator, ValidationResult};
pub use payments::{StripeProvider, StripePaymentForm, PaymentIntentCreator};
pub use ui::{ProgressIndicator, ValidationToast, LoadingSpinner};