1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

16 lines
240 B
React
Raw Normal View History

2018-09-16 19:56:22 +02:00
// Actions
export const SET_FILTER_VALUE = "@neighbors/SET_FILTER_VALUE";
// Action Creators: Set Filter Query
export function setFilterValue(value) {
return {
type: SET_FILTER_VALUE,
payload: {
value: value
}
}
}