countersAction.js 154 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 export const increment = (score = 1) => ({ type: 'INCREMENT', score }); export const decrement = (score = -1) => ({ type: 'DECREMENT', score });