summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/stores/modules/editor/index.js
blob: 8a7437b427dfe8f8c51f1d9073921cf9d8d10e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as actions from './actions';
import * as getters from './getters';
import state from './state';
import mutations from './mutations';

export default {
  namespaced: true,
  actions,
  state,
  mutations,
  getters,
};