dioxus/packages/tui/examples/readme.rs
Jonathan Kelley 37cf9bb9d2 feat: add tui
2022-03-09 12:55:30 -05:00

19 lines
342 B
Rust

use dioxus::prelude::*;
fn main() {
rink::launch(app);
}
fn app(cx: Scope) -> Element {
cx.render(rsx! {
div {
width: "100%",
height: "10px",
background_color: "red",
justify_content: "center",
align_items: "center",
"Hello world!"
}
})
}