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

index.js « list « 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: 0f97fa83ced11074e79cde16dfdcc7c978a28e57 (plain)
1
2
3
4
5
6
7
8
9
10
import createState from './state';
import * as actions from './actions';
import mutations from './mutations';

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