mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Add navTree to redux store and used that in NavBar/NavBarNext * Use createSlice * update import * Use NavBarUnconnected instead of Component
10 lines
267 B
TypeScript
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,
|
|
};
|