Angular - Signals
Given this Effect code snippet:
What will happen when the 'LOAD_DATA' action is dispatched?
loadData$ = createEffect(() => this.actions$.pipe(
ofType('LOAD_DATA'),
tap(() => console.log('Data loading started'))
), { dispatch: false });What will happen when the 'LOAD_DATA' action is dispatched?
