react-native-swipe-a-lot
Version:
A swipe component for React Native that works on iOS and Android.
21 lines (14 loc) • 347 B
JavaScript
const reducer = (state = {}, action) => {
const newState = Object.assign({}, state)
switch (action.type) {
case 'SET_ACTIVE_PAGE':
newState.page = action.page
break
case 'SET_DIMS':
newState.width = action.width
newState.height = action.height
break
}
return newState
}
module.exports = reducer