summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/members/store/index.js
blob: f219f8931b0d958b04cd28b7bd859a571bdb1598 (plain)
1
2
3
4
5
6
7
8
9
import createState from 'ee_else_ce/members/store/state';
import mutations from 'ee_else_ce/members/store/mutations';
import * as actions from 'ee_else_ce/members/store/actions';

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