Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 18, 2016 04:22
Show Gist options
  • Save dabit3/5e5aa6a330bad1f5828d89725072b81e to your computer and use it in GitHub Desktop.
Save dabit3/5e5aa6a330bad1f5828d89725072b81e to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 3 - navActions.js
import { POP_ROUTE, PUSH_ROUTE, CHANGE_TAB } from '../constants/ActionTypes'
export function push (route) {
return {
type: PUSH_ROUTE,
route
}
}
export function pop () {
return {
type: POP_ROUTE
}
}
export function changeTab (index) {
return {
type: CHANGE_TAB,
index
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment