1
2
3
4
5
6
use yew::prelude::*;

#[function_component(Divider)]
pub fn divider() -> Html {
    html! {<li class="pf-c-divider" role="separator"></li>}
}