Skip to content

Commit

Permalink
Update docs/02-app/01-building-your-application/01-routing/04-linking…
Browse files Browse the repository at this point in the history
…-and-navigating.mdx

Co-authored-by: JJ Kasper <[email protected]>
  • Loading branch information
niecnasowa and ijjk committed Oct 2, 2024
1 parent d715cbd commit 7c97aa3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Learn more about how the [Router Cache](/docs/app/building-your-application/cach

Partial rendering means only the route segments that change on navigation re-render on the client, and any shared segments are preserved.

For example, when navigating between two sibling routes, `/dashboard/settings` and `/dashboard/analytics`, the `settings` page will be unmounted, the `analytics` page will be mounted with fresh state, and the shared `dashboard` layout will be preserved.
For example, when navigating between two sibling routes, `/dashboard/settings` and `/dashboard/analytics`, the `settings` page will be unmounted, the `analytics` page will be mounted with fresh state, and the shared `dashboard` layout will be preserved. This behavior is also present between two routes on the same dynamic segment e.g. with `/blog/[slug]/page` and navigating from `/blog/first` to `/blog/second`.

<Image
alt="How partial rendering works"
Expand Down

0 comments on commit 7c97aa3

Please sign in to comment.