Type Alias Children
pub type Children = Box<dyn FnOnce() -> AnyView + Send>;
Expand description
The most common type for the children
property on components,
which can only be called once.
This does not support iterating over individual nodes within the children.
To iterate over children, use ChildrenFragment
.
Aliased Type§
pub struct Children(/* private fields */);