Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state.js « store « header_search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bebdbc7b92e0ed7bb52f8142b1f93a0c59d6f25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const createState = ({
  searchPath,
  issuesPath,
  mrPath,
  autocompletePath,
  searchContext,
  search,
}) => ({
  searchPath,
  issuesPath,
  mrPath,
  autocompletePath,
  searchContext,
  search,
  autocompleteOptions: [],
  autocompleteError: false,
  loading: false,
});
export default createState;