You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constructor(
store: Store<IState>
) {
// In our example we're treating any change in global state
// as an example of user activity. So to start we need to
// just get an observable for the stream of state changes
//
// const state$ = store.asObservable() as Observable<IState>;
// tslint:disable-next-line:prefer-const
let state$: Observable<IState> ;
The text was updated successfully, but these errors were encountered: