I am implementing ngrx
to existing web application and I asked myself the question is there a difference between the normal RxJs
Observable and the return value of my store.select()
function? And if there is a difference, can I convert my ngrx
store value into a normal observable?
If I log both in the console I'm getting these two different descriptions:
- the first log is the ngrx store value
- the second one is the normal observable
Ngrx Observable vs Ng Observable
Thanks for your Help!! :)