diff options
| author | UMTS at Teleco <crt@teleco.ch> | 2025-12-13 02:51:15 +0100 |
|---|---|---|
| committer | UMTS at Teleco <crt@teleco.ch> | 2025-12-13 02:51:15 +0100 |
| commit | 8323fdd73272a2882781aba3c499ba0be3dff2a6 (patch) | |
| tree | ffbf86473933e69cfaeef30d5c6ea7e5b494856c /src/core/components/mod.rs | |
Diffstat (limited to 'src/core/components/mod.rs')
| -rw-r--r-- | src/core/components/mod.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/components/mod.rs b/src/core/components/mod.rs new file mode 100644 index 0000000..68d2eb8 --- /dev/null +++ b/src/core/components/mod.rs @@ -0,0 +1,12 @@ +/// Reusable UI components and utilities +pub mod clone; +pub mod filter_builder; +pub mod form_builder; +pub mod help; +pub mod interactions; +pub mod stats; + +pub use clone::prepare_cloned_value; +pub use form_builder::{EditorField, FieldType, FormBuilder}; +// Other components available via direct module access: +// - filter_builder, help, interactions, stats |
