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

state.js « store « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a0d61d0b9310a3ee57868724904db4959b3e9ae (plain)
1
2
3
4
5
6
7
8
const createState = ({ query }) => ({
  query,
  groups: [],
  fetchingGroups: false,
  projects: [],
  fetchingProjects: false,
});
export default createState;