What does useObservableState do internally? #136
Answered
by
crimx
nareshbhatia
asked this question in
Q&A
-
|
When I use return (
useObservableState<{
data?: T;
error?: string;
isLoading: boolean;
}>(result$) ?? { isLoading: true }
);How does |
Beta Was this translation helpful? Give feedback.
Answered by
crimx
Mar 3, 2025
Replies: 1 comment
-
|
The RxJS |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nareshbhatia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The RxJS
BehaviorSubjectvalue is being assigned(not copied) to React state.