4 #todoapp-angular-ngrx
// ........................
export function TodoReducer(state = defaultState, action: Action) {
switch (action.type) {
//...............
case TodoActions.GET_TODOS: {
return { ...state, loaded: false, loading: true };
}
//...............
}
}