mirror of
https://github.com/grafana/grafana.git
synced 2024-11-30 12:44:10 -06:00
7947629f82
* Initial work on new toolbar button * Minor step * Small progress * Minor progress * Minor fix * removed console.log * Removing stuff we don't need yet
13 lines
413 B
TypeScript
13 lines
413 B
TypeScript
import { config } from '@grafana/runtime';
|
|
import coreModule from 'app/angular/core_module';
|
|
import { provideTheme } from 'app/core/utils/ConfigProvider';
|
|
|
|
export function react2AngularDirective(name: string, component: any, options: any) {
|
|
coreModule.directive(name, [
|
|
'reactDirective',
|
|
(reactDirective) => {
|
|
return reactDirective(provideTheme(component, config.theme2), options);
|
|
},
|
|
]);
|
|
}
|