diff options
Diffstat (limited to 'frontend/src/actions/states.js')
| -rw-r--r-- | frontend/src/actions/states.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/src/actions/states.js b/frontend/src/actions/states.js new file mode 100644 index 00000000..b3a355a2 --- /dev/null +++ b/frontend/src/actions/states.js @@ -0,0 +1,9 @@ +export const ADD_BATCH_TO_STATES = "ADD_BATCH_TO_STATES"; + +export function addBatchToStates(objectType, objects) { + return { + type: ADD_BATCH_TO_STATES, + objectType, + objects + }; +} |
