Files
leptos-shadcn-ui/packages/leptos/textarea/src/lib.rs
Peter Hanssens 31cde9640c fix: Remove orphaned #[cfg(test)] attributes
- Fixed compilation errors caused by orphaned #[cfg(test)] attributes
- All components now compile successfully with only warnings
- Ready for v0.9.0 publishing to crates.io
2025-09-21 00:00:18 +10:00

18 lines
286 B
Rust

//! Leptos port of shadcn/ui textarea
pub mod signal_managed;
pub mod default;
pub mod new_york;
pub use default::{Textarea};
pub use new_york::{Textarea as TextareaNewYork};
mod tests;
mod tdd_tests;
mod implementation_tests;
// Signal-managed exports
pub use signal_managed::*;