react-native-navigation的迁移库

actions.js 174B

12345678910
  1. import * as types from './actionTypes';
  2. export function increment() {
  3. return {type: types.INCREMENT};
  4. }
  5. export function decrement() {
  6. return {type: types.DECREMENT};
  7. }