aboutsummaryrefslogtreecommitdiffstats
path: root/docs/example-feature/actions.js
blob: c4d49b7082717983b7adc44ebc27ba98780e6f30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import PropTypes from 'prop-types';
import { createActionsFromDefinitions } from '../../src/actions/lib/actions';

export const exampleFeatureActions = createActionsFromDefinitions({
  greet: {
    name: PropTypes.string.isRequired,
  },
}, PropTypes.checkPropTypes);

export default exampleFeatureActions;