Why does Angular recommend migrating from observables to signals for local component state management?
ASignals allow asynchronous streaming of data like observables but with less code.
BObservables are deprecated in Angular and signals replace them completely.
CSignals provide synchronous, simpler, and more efficient state updates without subscriptions.
DSignals automatically handle HTTP requests unlike observables.