mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
8abef88b94
* mobx: poc in using each store as individual prop on the react containers * prettier test * fix: end the war between prettier vs tslint. * mobx: Move stores into their own folders * mobx: Refactor the AlertRule into its own file and add a helper-file * mobx: Move NavItem out of NavStore and remove lodash dependancy * mobx: Move ResultItem and SearchResultSection models out of the SearchStore * mobx: ServerStatsStore rename .tsx => .ts. And move ServerStat-model to its own file. * mobx: Remove lodash and jquery dependancy from ViewStore * mobx: Remove issue with double question mark
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
import { RootStore, IRootStore } from './RootStore/RootStore';
|
|
import config from 'app/core/config';
|
|
|
|
export let store: IRootStore;
|
|
|
|
export function createStore(backendSrv) {
|
|
store = RootStore.create(
|
|
{},
|
|
{
|
|
backendSrv: backendSrv,
|
|
navTree: config.bootData.navTree,
|
|
}
|
|
);
|
|
|
|
return store;
|
|
}
|