react2angular.ts 260 B

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