mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-19 00:53:12 +00:00
25 lines
439 B
Rust
25 lines
439 B
Rust
|
#![allow(non_snake_case)]
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
dioxus::desktop::launch(App);
|
||
|
}
|
||
|
|
||
|
// ANCHOR: App
|
||
|
fn App(cx: Scope) -> Element {
|
||
|
cx.render(rsx! {
|
||
|
About {},
|
||
|
About {},
|
||
|
})
|
||
|
}
|
||
|
// ANCHOR_END: App
|
||
|
|
||
|
// ANCHOR: About
|
||
|
pub fn About(cx: Scope) -> Element {
|
||
|
cx.render(rsx!(p {
|
||
|
b {"Dioxus Labs"}
|
||
|
" An Open Source project dedicated to making Rust UI wonderful."
|
||
|
}))
|
||
|
}
|
||
|
// ANCHOR_END: About
|