123456789101112131415161718192021222324252627282930 |
- #![allow(non_snake_case, unused)]
- use dioxus::prelude::*;
- use dioxus_router::prelude::*;
- #[derive(Routable, Clone)]
- #[rustfmt::skip]
- enum Route {
- #[route("/")]
- Home {},
- }
- #[inline_props]
- fn Home(cx: Scope) -> Element {
- todo!()
- }
- // ANCHOR: history_buttons
- fn HistoryNavigation(cx: Scope) -> Element {
- render! {
- GoBackButton {
- "Back to the Past"
- }
- GoForwardButton {
- "Back to the Future" /* You see what I did there? 😉 */
- }
- }
- }
- // ANCHOR_END: history_buttons
- fn main() {}
|