children

Macro children 

Source
macro_rules! children {
    ( $( $child:expr ),* ) => { ... };
}
Expand description

This macro helps to declare children for a Tag element using the ElementBuilder API

ยงExample

Div.with_children(children!("test", Div.with_child("test2")));