2020-11-19 07:09:26 -05:00
|
|
|
import * as actions from 'ee_else_ce/members/store/actions';
|
2021-02-14 13:09:20 -05:00
|
|
|
import mutations from 'ee_else_ce/members/store/mutations';
|
|
|
|
import createState from 'ee_else_ce/members/store/state';
|
2020-11-19 07:09:26 -05:00
|
|
|
|
2020-12-23 16:10:24 -05:00
|
|
|
export default (initialState) => ({
|
2021-04-13 17:11:25 -04:00
|
|
|
namespaced: true,
|
2020-11-19 07:09:26 -05:00
|
|
|
state: createState(initialState),
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
});
|