use leptos::{ IntoView, component, prelude::{ClassAttribute, ElementChild}, view, }; #[component] pub fn Banner(mut text: T) -> impl IntoView where T: FnMut() -> String + Send + 'static, { view! {

{move || text()}

} }