2021-02-22 17:27:13 +05:30
|
|
|
import * as actions from 'ee_else_ce/members/store/actions';
|
2021-03-11 19:13:27 +05:30
|
|
|
import mutations from 'ee_else_ce/members/store/mutations';
|
|
|
|
import createState from 'ee_else_ce/members/store/state';
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
export default (initialState) => ({
|
2021-02-22 17:27:13 +05:30
|
|
|
state: createState(initialState),
|
|
|
|
actions,
|
|
|
|
mutations,
|
|
|
|
});
|