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

export const announcementActions = createActionsFromDefinitions({
  show: {
    targetVersion: PropTypes.string,
  },
}, PropTypes.checkPropTypes);

export default announcementActions;