Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Last active March 20, 2016 20:17
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 chuck0523/6118d13432b79e522230 to your computer and use it in GitHub Desktop.
Save chuck0523/6118d13432b79e522230 to your computer and use it in GitHub Desktop.
const slide = (state = 0, action) => {
switch(action.type) {
case 'PREV_PAGE':
return action.page
case 'NEXT_PAGE':
return action.page
default:
return state
}
}
export default slide
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment