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: 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;