pluginActions.tsx 214 B

123456789101112
  1. import {createActions} from 'reflux';
  2. const PluginActions = createActions([
  3. 'update',
  4. 'updateError',
  5. 'updateSuccess',
  6. 'fetchAll',
  7. 'fetchAllSuccess',
  8. 'fetchAllError',
  9. ]);
  10. export default PluginActions;