not_found.rs 166 B

1234567
  1. use dioxus::prelude::*;
  2. #[component]
  3. pub fn NotFound(cx: Scope, route: Vec<String>) -> Element {
  4. let routes = route.join("");
  5. render! {rsx! {div{routes}}}
  6. }