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

index.js « detail « modules « stores « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40fdb04f2eb3e1c40c630f32d60f4d8af6975f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import mutations from './mutations';
import createState from './state';

export default initialState => ({
  namespaced: true,
  actions,
  getters,
  mutations,
  state: createState(initialState),
});