I'm working with standalone Angular components and experimenting with the NgRx Component Store. I'm facing confusion regarding the correct way to inject the component store into a component. Here's how I've been providing the store in my component:
@Component({ selector: 'example-selector', standalone: true, providers: [ExampleStore], templateUrl: './comparison-view.component.html', styles: [], imports: [ CommonModule ], }) export class ExampleComponent implements OnInit { ... } However, I came across the provideComponentStore method in the NgRx documentation:
import { provideComponentStore } from '@ngrx/component-store'; @Component({ selector: 'example-selector', standalone: true, providers: [provideComponentStore(ExampleStore)], templateUrl: './comparison-view.component.html', styles: [], imports: [ CommonModule ], }) export class ExampleComponent implements OnInit { ... } Both methods seemed to work in my application, and I could utilize the store without any issues. What's the exact difference between these two approaches, and which one is recommended for my use case?
Using Version 16.x of @ngrx/store