aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/actions/search.js
blob: 53993d3c2d8b24e5a532eb41984f013821bee774 (plain)
1
2
3
4
5
6
7
8
9
10
// eslint-disable-next-line import/prefer-default-export
export const inputChange = typedValue => ({
  type: 'SEARCH/INPUT_CHANGE',
  typedValue,
});

export const focusChange = hasFocus => ({
  type: 'SEARCH/FOCUS_CHANGE',
  hasFocus,
});