Jonathan Kelley f47d2900fb feat: add a redirect před 3 roky
..
examples f47d2900fb feat: add a redirect před 3 roky
src f47d2900fb feat: add a redirect před 3 roky
tests cdbc37711f fix: wasm test před 3 roky
.gitignore e04a6d63a5 chore: move tests out of core and into the top level crate před 3 roky
CHANGELOG.md 56f3002aed feat: add changelogs před 3 roky
Cargo.toml 57bd8b7ce2 fix: enable wasmtest feature před 3 roky
Makefile.toml bd565bb65f improve Makefile tests před 3 roky
README.md c7627f0b93 fix: tests pass před 3 roky
usage.md 46a42c5ef9 Docs: update readme and usage doc for router před 3 roky
webdriver.json ee49fc27ff fix some newlines před 3 roky

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