UNPKG

generator-rn-toolbox-gv

Version:

React-Native generators to kickstart your project

17 lines (12 loc) 238 B
// @flow const initialState = {}; // ACTION TYPES export const actionTypes = {}; // REDUCER export function appReducer(state = initialState, action) { switch (action.type) { default: return state; } } // ACTION CREATORS