Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created December 7, 2016 22:44
Show Gist options
  • Save dabit3/cd88e12f40c0b4be4c4d6359b817efcd to your computer and use it in GitHub Desktop.
Save dabit3/cd88e12f40c0b4be4c4d6359b817efcd to your computer and use it in GitHub Desktop.
Navigation Card Stack implementation with Redux - navActions
import { PUSH_ROUTE, POP_ROUTE } from './constants'
export function push(route) {
return {
type: PUSH_ROUTE,
route
}
}
export function pop() {
return {
type: POP_ROUTE
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment