dioxus/packages/dioxus-tui/examples/readme_hello_world.rs
2024-01-13 21:12:21 -08:00

19 lines
328 B
Rust

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