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

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

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