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

15 lines
282 B
TypeScript
Raw Normal View History

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