Choices/assets/scripts/src/actions/index.js

22 lines
384 B
JavaScript
Raw Normal View History

2016-04-04 15:43:22 +02:00
export const addItemToStore = (value, id) => {
2016-03-30 16:04:21 +02:00
return {
type: 'ADD_ITEM',
value: value,
id: id
2016-03-30 16:04:21 +02:00
}
};
2016-03-30 16:04:21 +02:00
export const removeItemFromStore = (id) => {
2016-03-30 16:04:21 +02:00
return {
type: 'REMOVE_ITEM',
id: id
2016-03-30 16:04:21 +02:00
}
};
2016-03-30 16:04:21 +02:00
export const selectItemFromStore = (id, value) => {
2016-03-30 16:04:21 +02:00
return {
type: 'SELECT_ITEM',
id: id,
2016-03-30 16:04:21 +02:00
value: value
}
};