diff --git a/src/router/16_routes.md b/src/router/16_routes.md index e77c1b3..9c1b5cf 100644 --- a/src/router/16_routes.md +++ b/src/router/16_routes.md @@ -25,7 +25,7 @@ use leptos_router::*; ## Providing the `` -Routing behavior is provided by the [``](https://docs.rs/leptos_router/latest/leptos_router/fn.Router.html) component. This should usually be somewhere near the root of your application, the rest of the app. +Routing behavior is provided by the [``](https://docs.rs/leptos_router/latest/leptos_router/fn.Router.html) component. This should usually be somewhere near the root of your application, wrapping the rest of the app. > You shouldn’t try to use multiple ``s in your app. Remember that the router drives global state: if you have multiple routers, which one decides what to do when the URL changes?