usecrate::Element;/// Trait for component props that support children
pubtraitComponentProps{/// Get the children VNodes (returns a clone for simplicity)
fnget_children(&self)->Vec<Element>;/// Set the children VNodes
fnset_children(&mutself, children:Vec<Element>);}