12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
import { navIndexReducer as navIndex } from './navModel';
|
|
import { locationReducer as location } from './location';
|
|
import { appNotificationsReducer as appNotifications } from './appNotification';
|
|
import { applicationReducer as application } from './application';
|
|
|
|
export default {
|
|
navIndex,
|
|
location,
|
|
appNotifications,
|
|
application,
|
|
};
|