shierro/territory-manager

View on GitHub
app/containers/PlacementsPage/actions.js

Summary

Maintainability
A
0 mins
Test Coverage
import { INCREMENT_PLACEMENT } from './constants';

export function increment(placement) {
  return { type: INCREMENT_PLACEMENT, placement };
}

export const pageActions = dispatch => ({
  increment: type => dispatch(increment(type)),
});