grafana/public/app/core/reducers/index.ts
Ashley Harrison 666a794a82
Navigation: Initialise navTree in redux store (#44440)
* Add navTree to redux store and used that in NavBar/NavBarNext

* Use createSlice

* update import

* Use NavBarUnconnected instead of Component
2022-01-28 10:06:52 +00:00

10 lines
267 B
TypeScript

import { navIndexReducer as navIndex } from './navModel';
import { navTreeReducer as navBarTree } from './navBarTree';
import { appNotificationsReducer as appNotifications } from './appNotification';
export default {
navBarTree,
navIndex,
appNotifications,
};