grafana/public/app/core/reducers/index.ts
Peter Holmberg 58e94fc0fa moved state
2018-10-30 13:09:59 +01:00

12 lines
316 B
TypeScript

import { navIndexReducer as navIndex } from './navModel';
import { locationReducer as location } from './location';
import { appNotificationsReducer as appNotifications } from './appNotification';
import { userReducer as user } from './user';
export default {
navIndex,
location,
appNotifications,
user,
};