dioxus/docs/router/examples/static_segments.rs

29 lines
493 B
Rust
Raw Normal View History

2023-06-01 22:31:13 +00:00
#![allow(non_snake_case)]
use dioxus::prelude::*;
use dioxus_router::prelude::*;
// ANCHOR: route
#[derive(Routable, Clone)]
#[rustfmt::skip]
enum Route {
// Routes always start with a slash
#[route("/")]
Home {},
// You can have multiple segments in a route
#[route("/hello/world")]
HelloWorld {},
}
#[inline_props]
fn Home(cx: Scope) -> Element {
todo!()
}
#[inline_props]
fn HelloWorld(cx: Scope) -> Element {
todo!()
}
// ANCHOR_END: route
2023-06-01 22:48:43 +00:00
fn main() {}