Files
grafana/public/app/stores/store.ts

17 lines
307 B
TypeScript

import { RootStore, IRootStore } from './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;
}