Jonathan Kelley e04a6d63a5 chore: move tests out of core and into the top level crate пре 3 година
..
examples 4a3680ee1b chore: remove all warnings пре 3 година
src 916dc64402 style: format againkjdfakbjfbkasjd пре 3 година
tests f1865faef7 setup done, local tests work, check workflow пре 3 година
.gitignore e04a6d63a5 chore: move tests out of core and into the top level crate пре 3 година
CHANGELOG.md 56f3002aed feat: add changelogs пре 3 година
Cargo.toml 3873cd1a60 fix: remove unused depds пре 3 година
Makefile.toml bd565bb65f improve Makefile tests пре 3 година
README.md 46a42c5ef9 Docs: update readme and usage doc for router пре 3 година
usage.md 46a42c5ef9 Docs: update readme and usage doc for router пре 3 година
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