pub fn list_group(items: &[&str]) -> Element<Ul>Expand description
Create a basic list group.
ยงExample
use ironhtml_bootstrap::list_group::list_group;
let items = vec!["Item 1", "Item 2", "Item 3"];
let list = list_group(&items);
assert!(list.render().contains("list-group"));