mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
212 B
TypeScript
13 lines
212 B
TypeScript
import { RootStore, IRootStore } from './RootStore';
|
|
|
|
export let store: IRootStore;
|
|
|
|
export function createStore(backendSrv) {
|
|
store = RootStore.create(
|
|
{},
|
|
{
|
|
backendSrv: backendSrv,
|
|
}
|
|
);
|
|
}
|