mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
42 lines
885 B
Rust
42 lines
885 B
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() {
|
|
dioxus_desktop::launch(|cx| render!(Router::<Route> {}));
|
|
}
|