Skip to content

Instantly share code, notes, and snippets.

@philipszdavido
Created September 17, 2017 15:47
Embed
What would you like to do?
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