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