leptos_shadcn_alert/lib.rs
1//! Leptos port of shadcn/ui alert
2
3pub mod signal_managed;
4pub mod default;
5pub mod new_york;
6
7pub use default::{Alert, AlertTitle, AlertDescription, AlertVariant};
8pub use new_york::{Alert as AlertNewYork, AlertTitle as AlertTitleNewYork, AlertDescription as AlertDescriptionNewYork, AlertVariant as AlertVariantNewYork};
9
10mod tests;
11
12mod tdd_tests;
13
14// Signal-managed exports
15pub use signal_managed::*;