indicatorActions.tsx 174 B

1234567891011
  1. import Reflux from 'reflux';
  2. const IndicatorActions = Reflux.createActions([
  3. 'replace',
  4. 'append',
  5. 'remove',
  6. 'clear',
  7. 'undo',
  8. ]);
  9. export default IndicatorActions;