Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created March 20, 2016 19:00
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/c8b7b08ccab9e57faa8d to your computer and use it in GitHub Desktop.
Save chuck0523/c8b7b08ccab9e57faa8d to your computer and use it in GitHub Desktop.
let currentPage = 0
export const prevPage = () => {
return {
type: 'PREV_PAGE',
page: currentPage++
}
}
export const nextPage = () => {
return {
type: 'NEXT_PAGE',
page: currentPage--
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment