This repository has been archived on 2025-09-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
freezone/portal/src/components/common/mod.rs
Timur Gordon c1ea9483d7 refactor wip
2025-06-28 16:40:54 +02:00

10 lines
365 B
Rust

//! 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};