summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/header_search/store/state.js
blob: 3d4073f0583cadabfec6dbc71076ce40142cbe8b (plain)
1
2
3
4
5
6
7
8
9
10
11
const createState = ({ searchPath, issuesPath, mrPath, autocompletePath, searchContext }) => ({
  searchPath,
  issuesPath,
  mrPath,
  autocompletePath,
  searchContext,
  search: '',
  autocompleteOptions: [],
  loading: false,
});
export default createState;