grafana/public/app/core/angular_wrappers.ts
2017-10-22 12:48:20 +02:00

9 lines
266 B
TypeScript

import { react2AngularDirective } from 'app/core/utils/react2angular';
import { PasswordStrength } from './components/PasswordStrength';
export function registerAngularDirectives() {
react2AngularDirective('passwordStrength', PasswordStrength, ['password']);
}