Skip to main content

leptos_forms_rs/devtools/
mod.rs

1//! DevTools module - Development tools for form debugging and monitoring
2//!
3//! This module provides comprehensive development tools for debugging, monitoring,
4//! and inspecting forms during development. It includes form state inspection,
5//! performance monitoring, and debug utilities.
6
7pub mod debug;
8pub mod inspector;
9pub mod performance;
10pub mod types;
11
12// Re-export public API
13pub use debug::*;
14pub use inspector::*;
15pub use performance::*;
16pub use types::*;