UNPKG

lucid-ui

Version:

A UI component library from Xandr.

13 lines 325 B
export const onSwipe = (state, slidesSwiped) => ({ ...state, offset: state.offset + slidesSwiped, }); export const onPrev = (state) => ({ ...state, offset: state.offset - 1, }); export const onNext = (state) => ({ ...state, offset: state.offset + 1, }); //# sourceMappingURL=DateSelect.reducers.js.map