(form): Añade nuevo componente Number

This commit is contained in:
Manuel Cillero 2026-08-05 17:33:27 +02:00
parent 502c00c891
commit e8bba0803d
3 changed files with 236 additions and 14 deletions

View file

@ -20,11 +20,14 @@ pub mod select;
pub mod input;
mod textarea;
pub use textarea::Textarea;
mod number;
pub use number::Number;
mod range;
pub use range::Range;
mod textarea;
pub use textarea::Textarea;
mod hidden;
pub use hidden::Hidden;