mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 22:50:19 +00:00
.. | ||
example.png | ||
frame.rs | ||
layouts.rs | ||
list.rs | ||
margin.rs | ||
quadrants.rs | ||
readme.rs | ||
strecher.rs | ||
text.rs |
use dioxus::prelude::*; fn main() { let mut dom = VirtualDom::new(app); dom.rebuild(); rink::render_vdom(&dom).unwrap(); } fn app(cx: Scope) -> Element { cx.render(rsx! { div { width: "100%", height: "10px", background_color: "red", justify_content: "center", align_items: "center", "Hello world!" } }) }