export class TestComponent { constructor(private store: Store) { } todos: Subscription; ngOnInit() { this.todos = this.store.select('todos').subscribe(console.log); } ngOnDestroy() { this.todos.unsubscribe(); } }