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: fb2c83dbbe3e8b274626cf261427804f182b3830 (plain)
1
2
3
4
5
6
7
8
const createState = ({ searchPath, issuesPath, mrPath, searchContext }) => ({
  searchPath,
  issuesPath,
  mrPath,
  searchContext,
  search: '',
});
export default createState;