mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-11 15:07:08 +00:00
19 lines
349 B
Rust
19 lines
349 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::tui::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!"
|
|
}
|
|
})
|
|
}
|