1use crate::Element;
23/// Trait for component props that support children
4pub trait ComponentProps {
5/// Get the children VNodes (returns a clone for simplicity)
6fn get_children(&self) -> Vec<Element>;
78/// Set the children VNodes
9fn set_children(&mut self, children: Vec<Element>);
10}