Concept Flow - BehaviorSubject as simple store
Create BehaviorSubject with initial value
Subscribe to BehaviorSubject
Component receives current value
Component triggers update
BehaviorSubject emits new value
Subscribers get updated value
UI updates with new data
This flow shows how a BehaviorSubject holds a value, components subscribe to it, and updates flow through the store to the UI.