leptos_bootstrap/v5/
row.rs

1use leptos::prelude::*;
2
3#[component]
4pub fn Row<'a>(#[prop(optional, into)] class: &'a str, children: Children) -> impl IntoView {
5    let class = format!("row {}", class);
6    view! { <div class=class>{children()}</div> }
7}