mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2026-01-06 21:12:56 +00:00
- 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
18 lines
286 B
Rust
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::*;
|