(state: TipsState, tips: string)
| 16 | |
| 17 | @Reducer() |
| 18 | showTipsWithReducer(state: TipsState, tips: string): TipsState { |
| 19 | return { ...state, tips } |
| 20 | } |
| 21 | |
| 22 | @Effect() |
| 23 | showTipsWithEffectAction(tips$: Observable<string>): Observable<EffectAction> { |
no outgoing calls
no test coverage detected