grafana/public/app/core/utils/react2angular.ts

11 lines
274 B
TypeScript
Raw Normal View History

2017-12-20 05:33:33 -06:00
import coreModule from 'app/core/core_module';
export function react2AngularDirective(name: string, component: any, options: any) {
coreModule.directive(name, [
2017-12-20 05:33:33 -06:00
'reactDirective',
reactDirective => {
return reactDirective(component, options);
2017-12-20 05:33:33 -06:00
},
]);
}