Concept Flow - Service-based state management
Component A needs state
Inject Service
Service holds state
Component A reads/updates state
Component B needs same state
Inject same Service
Component B reads updated state
State shared and synced
Components inject a shared service that holds the state. They read and update this state through the service, enabling shared, synced data.