mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
16 lines
240 B
React
16 lines
240 B
React
![]() |
|
||
|
|
||
|
// 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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|