Files
react-samples/helloworld-redux-counter/src/actions/counter.js
Tommy Parnell 1898eb4b46 init
2018-09-18 11:09:19 -04:00

3 lines
115 B
JavaScript

import { INCREMENT_COUNTER } from './constants';
export const incrementCount = () => ({type: INCREMENT_COUNTER });