mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
60 lines
1.1 KiB
Rust
60 lines
1.1 KiB
Rust
#![allow(non_snake_case)]
|
|
use dioxus::prelude::*;
|
|
use dioxus_router::prelude::*;
|
|
|
|
#[derive(Routable, Clone, PartialEq)]
|
|
enum Route {
|
|
#[layout(Nav)]
|
|
#[route("/")]
|
|
Homepage {},
|
|
|
|
#[route("/blog/:id")]
|
|
Blog { id: String },
|
|
}
|
|
|
|
#[component]
|
|
fn Homepage() -> Element {
|
|
render! { h1 { "Welcome home" } }
|
|
}
|
|
|
|
#[component]
|
|
fn Blog(id: String) -> Element {
|
|
render! {
|
|
h1 { "How to make: " }
|
|
p { "{id}" }
|
|
}
|
|
}
|
|
|
|
#[component]
|
|
fn Nav() -> Element {
|
|
render! {
|
|
nav {
|
|
li {
|
|
Link { to: Route::Homepage {}, "Go home" }
|
|
}
|
|
li {
|
|
Link {
|
|
to: Route::Blog {
|
|
id: "Brownies".to_string(),
|
|
},
|
|
"Learn Brownies"
|
|
}
|
|
}
|
|
li {
|
|
Link {
|
|
to: Route::Blog {
|
|
id: "Cookies".to_string(),
|
|
},
|
|
"Learn Cookies"
|
|
}
|
|
}
|
|
}
|
|
div { Outlet::<Route> {} }
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
launch(Route::Blog {
|
|
id: "hello".to_string(),
|
|
});
|
|
}
|