mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 08:33:07 +00:00
36 lines
1.1 KiB
Rust
36 lines
1.1 KiB
Rust
|
#![allow(non_snake_case, unused)]
|
||
|
use dioxus::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
#[cfg(feature = "web")]
|
||
|
dioxus_web::launch_cfg(app, dioxus_web::Config::new().hydrate(true));
|
||
|
#[cfg(feature = "ssr")]
|
||
|
{
|
||
|
use dioxus_fullstack::prelude::*;
|
||
|
tokio::runtime::Runtime::new()
|
||
|
.unwrap()
|
||
|
.block_on(async move {
|
||
|
let addr = std::net::SocketAddr::from(([127, 0, 0, 1], 8080));
|
||
|
axum::Server::bind(&addr)
|
||
|
.serve(
|
||
|
axum::Router::new()
|
||
|
.connect_hot_reloading()
|
||
|
.serve_dioxus_application("", ServeConfigBuilder::new(app, ()))
|
||
|
.into_make_service(),
|
||
|
)
|
||
|
.await
|
||
|
.unwrap();
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn app(cx: Scope) -> Element {
|
||
|
let mut count = use_state(cx, || 0);
|
||
|
|
||
|
cx.render(rsx! {
|
||
|
h1 { "High-Five counter: {count}" }
|
||
|
button { onclick: move |_| count += 1, "Up high!" }
|
||
|
button { onclick: move |_| count -= 1, "Down low!" }
|
||
|
})
|
||
|
}
|