rust-stream-layouts/src/components/stream_title.rs

11 lines
342 B
Rust

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."
}
}
});
}