mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-24 05:03:06 +00:00
d9546d9504
* feat: use synchronous router design * feat: function to get router out of dom * chore: restructure workspace to use renderers as packages, not features
14 lines
208 B
Rust
14 lines
208 B
Rust
#![allow(non_snake_case)]
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_web::launch(App);
|
|
}
|
|
|
|
fn App(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
"Hello, world!"
|
|
}
|
|
})
|
|
}
|