rsnext/examples/with-redux-thunk/types.js

6 lines
152 B
JavaScript
Raw Normal View History

// REDUX ACTION TYPES
export const TICK = 'TICK'
export const INCREMENT = 'INCREMENT'
export const DECREMENT = 'DECREMENT'
export const RESET = 'RESET'