Skip to content

Instantly share code, notes, and snippets.

@philipszdavido
Created September 17, 2017 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philipszdavido/7bf34d0d11d8da6df2bd3ecd8f7f374b to your computer and use it in GitHub Desktop.
Save philipszdavido/7bf34d0d11d8da6df2bd3ecd8f7f374b to your computer and use it in GitHub Desktop.
export function reducer(state = initialState, action:articles.Actions):State {
switch(action.type){
case ADD_ARTICLE:
return {
articles: [...state.articles,action.payload]
}
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment