2018-09-02 12:36:36 -05:00
|
|
|
import { navIndexReducer as navIndex } from './navModel';
|
2018-09-02 13:36:03 -05:00
|
|
|
import { locationReducer as location } from './location';
|
2018-10-24 07:33:53 -05:00
|
|
|
import { appNotificationsReducer as appNotifications } from './appNotification';
|
2019-06-03 06:40:33 -05:00
|
|
|
import { applicationReducer as application } from './application';
|
2018-08-31 06:24:36 -05:00
|
|
|
|
|
|
|
export default {
|
2018-09-02 12:36:36 -05:00
|
|
|
navIndex,
|
2018-08-31 15:16:20 -05:00
|
|
|
location,
|
2018-10-24 07:33:53 -05:00
|
|
|
appNotifications,
|
2019-06-03 06:40:33 -05:00
|
|
|
application,
|
2018-08-31 06:24:36 -05:00
|
|
|
};
|