1 2 3 4 5 6
use leptos::*; #[component] pub fn BBox(children: Children, #[prop(optional, into)] class: TextProp) -> impl IntoView { view! { <div class=format!("box {}", class.get())>{children()}</div> } }