index.ts 344 B

1234567891011
  1. import { navIndexReducer as navIndex } from './navModel';
  2. import { locationReducer as location } from './location';
  3. import { appNotificationsReducer as appNotifications } from './appNotification';
  4. import { applicationReducer as application } from './application';
  5. export default {
  6. navIndex,
  7. location,
  8. appNotifications,
  9. application,
  10. };