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

index.js « stores « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2e93d789d795eabc33d15a5511785df3bdd5219 (plain)
1
2
3
4
5
6
7
import Vuex from 'vuex';

export default ({ modules, featureFlags }) =>
  new Vuex.Store({
    modules,
    state: { featureFlags },
  });