pagetop/src/core/component.rs
Manuel Cillero bb34ba5887 ♻️ [html] Cambia tipos Option... por Attr...
Renombra los tipos para atributos HTML `Id`, `Name`, `Value` (`String`),
`L10n` (`Translate`) y `Classes`. Y mueve `OptionComponent` al *core* de
componentes como `TypedSlot`.
2025-08-23 18:52:45 +02:00

12 lines
261 B
Rust

//! API para construir nuevos componentes.
mod definition;
pub use definition::{Component, ComponentRender};
mod children;
pub use children::Children;
pub use children::{Child, ChildOp};
pub use children::{Typed, TypedOp};
mod slot;
pub use slot::TypedSlot;