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

9 lines
247 B
Rust

use dioxus::prelude::*;
pub fn StreamContent(cx: Scope) -> Element {
cx.render(rsx!{
div { class: "absolute bottom-4 right-4 w-1280 h-720 p-4 ring-[1px] ring-ada-werefox-cyan bg-[rgb(255,0,150)]",
div {}
}
})
}