react2angular.ts 274 B

12345678910
  1. import coreModule from 'app/core/core_module';
  2. export function react2AngularDirective(name: string, component: any, options: any) {
  3. coreModule.directive(name, [
  4. 'reactDirective',
  5. reactDirective => {
  6. return reactDirective(component, options);
  7. },
  8. ]);
  9. }