From 7074564abd3e70f4f534a5836cac078ce6402b97 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Wed, 10 Jul 2024 08:47:39 -0400 Subject: [PATCH] Update 16_routes.md --- src/router/16_routes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?