Jonathan Kelley 4eefc3f854 chore: rename all &cx to cx, make clipppy happy 2 년 전
..
examples 4eefc3f854 chore: rename all &cx to cx, make clipppy happy 2 년 전
src 5673017def chore: clean up the repo some 2 년 전
tests 4eefc3f854 chore: rename all &cx to cx, make clipppy happy 2 년 전
.gitignore e04a6d63a5 chore: move tests out of core and into the top level crate 3 년 전
CHANGELOG.md 56f3002aed feat: add changelogs 3 년 전
Cargo.toml 90982e0ccb wip: start to refactor out hot reloading from packages 2 년 전
Makefile.toml bd565bb65f improve Makefile tests 3 년 전
README.md 8346525db5 Update README.md 3 년 전
usage.md 4eefc3f854 chore: rename all &cx to cx, make clipppy happy 2 년 전
webdriver.json ee49fc27ff fix some newlines 3 년 전

README.md

Dioxus Router

Dioxus Router is a first-party Router for all your Dioxus Apps. It provides a React-Router style interface that works anywhere: across the browser, SSR, and natively.

fn app() {
    cx.render(rsx! {
        Router {
            Route { to: "/", Component {} },
            Route { to: "/blog", Blog {} },
            Route { to: "/blog/:id", BlogPost {} },
        }
    })
}

Resources

  • See the mdbook
  • See the one-page brief
  • See the guide on the doc site
  • The crates.io API