aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/settingsWS/actions.ts
blob: 03a398eb5f841c1caf531943c307c7c6ff24e2da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import PropTypes from 'prop-types';
import { createActionsFromDefinitions } from '../../actions/lib/actions';

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

export default settingsWSActions;