grafana/public/app/core/reducers/index.ts

10 lines
262 B
TypeScript
Raw Normal View History

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';
2018-08-31 06:24:36 -05:00
export default {
navIndex,
location,
2018-10-24 07:33:53 -05:00
appNotifications,
2018-08-31 06:24:36 -05:00
};