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

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

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