Skip to content

Commit

Permalink
docs(store): recommend using NgRx Signals instead of ComponentStore (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoslig authored Dec 24, 2024
1 parent 5e98142 commit 34d18af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/ngrx.io/content/guide/store/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion projects/ngrx.io/content/guide/store/why.md
Original file line number Diff line number Diff line change
@@ -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?

Expand Down

0 comments on commit 34d18af

Please sign in to comment.