summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/mr_notes/stores/modules/index.js
blob: 660081f76c8e15ff1178ca817cc515ae2bbd5487 (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,
};