Skip to content

Instantly share code, notes, and snippets.

@dworkz
dworkz / actions search.js
Created May 8, 2018 20:20 — forked from michael-tomala/actions search.js
React+Redux - sample
import { search as types } from '../constants';
import { getCases, getPublications, getUsers, getCategories } from '../services/searchService';
export const changeSearchPhrase = (phrase) => {
return {
type: types.CHANGE_SEARCH_PHRASE,
payload: {
phrase
}
};