mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
11 lines
185 B
Rust
11 lines
185 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus::desktop::launch(App);
|
|
}
|
|
|
|
fn App((cx, props): ScopeState<()>) -> Element {
|
|
cx.render(rsx! (
|
|
div { "Hello, world!" }
|
|
))
|
|
}
|