use dioxus::prelude::*; pub fn StreamTitle(cx: Scope) -> Element { return cx.render(rsx!{ div { class: "flex p-4 h-16 text-lg text-center ring-2 text-alice-werefox-grey-lighter ring-alice-werefox-grey-light bg-alice-werefox-grey", div { class: "m-auto", "Test Thing." } } }); }