Created
November 14, 2017 13:25
-
-
Save daveharmswebdev/150393338047dabc0e6eb79b092faacc to your computer and use it in GitHub Desktop.
todolist ngrx refactor todos reducer.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ITodo } from '../models'; | |
import * as ListActions from '../actions/todo-list.actions'; | |
export type Action = ListActions.All; | |
export function todosReducer(state: ITodo[], action: Action) { | |
switch (action.type) { | |
case ListActions.FETCH_TODOS_SUCCESS: | |
return action.payload; | |
default: | |
return state; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment