Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 17, 2016 14:51
Show Gist options
  • Save dabit3/6abf8a130bf3c6048e887b62c55fca50 to your computer and use it in GitHub Desktop.
Save dabit3/6abf8a130bf3c6048e887b62c55fca50 to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux navActions.js
import { POP_ROUTE, PUSH_ROUTE } from '../constants/ActionTypes'
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