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: 70a8aab999891b7ef74856fe6abafcc873c4e677 (plain)
1
2
3
4
5
6
const createState = ({ query }) => ({
  query,
  groups: [],
  fetchingGroups: false,
});
export default createState;