Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { createTypes } from 'redux-recompose';
export const actions = createTypes(['OTHER_ACTION'], '@@HEARTHSTONE');
// No API calls ?
const actionCreators = {
otherAction: () => ({ type: actions.OTHER_ACTION })
};
export default actionCreators;