I want to itinerate in something like that :
#[derive(Component)]
pub struct CardTitle;
let ui_elements = vec![
(Box::new(CardTitle), JustifyContent::Center, 215.0, 10.0, 50.0),
(Box::new(CardDescription), JustifyContent::Start, 880.0, 50.0, 40.0),
];
I found this issue https://github.com/bevyengine/bevy/issues/3227 and sends me to insert_batch but I don't realy understand how to use that and can't find an example.
Maybe I'm missing how to make this work in a different way ?

