diff --git a/projects/ngrx.io/content/guide/store/index.md b/projects/ngrx.io/content/guide/store/index.md index fcd3aec6d7..6dd1dc72d5 100644 --- a/projects/ngrx.io/content/guide/store/index.md +++ b/projects/ngrx.io/content/guide/store/index.md @@ -11,7 +11,7 @@ Store is RxJS powered global state management for Angular applications, inspired ## Local state management -NgRx Store is mainly for managing global state across an entire application. In cases where you need to manage temporary or local component state, consider using [NgRx ComponentStore](guide/component-store). +NgRx Store is mainly for managing global state across an entire application. In cases where you need to manage temporary or local component state, consider using [NgRx Signals](guide/signals). ## Installation diff --git a/projects/ngrx.io/content/guide/store/why.md b/projects/ngrx.io/content/guide/store/why.md index 7e2890a1e2..1e8658af77 100644 --- a/projects/ngrx.io/content/guide/store/why.md +++ b/projects/ngrx.io/content/guide/store/why.md @@ -1,6 +1,6 @@ # Why use NgRx Store for State Management? -NgRx Store provides state management for creating maintainable, explicit applications through the use of single state and actions in order to express state changes. In cases where you don't need a global, application-wide solution to manage state, consider using [NgRx ComponentStore](guide/component-store) which provides a solution for local state management. +NgRx Store provides state management for creating maintainable, explicit applications through the use of single state and actions in order to express state changes. In cases where you don't need a global, application-wide solution to manage state, consider using [NgRx Signals](guide/signals) which provides a solution for local state management. ## When Should I Use NgRx Store for State Management?