mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
9 lines
266 B
TypeScript
9 lines
266 B
TypeScript
import { react2AngularDirective } from 'app/core/utils/react2angular';
|
|
import { PasswordStrength } from './components/PasswordStrength';
|
|
|
|
export function registerAngularDirectives() {
|
|
|
|
react2AngularDirective('passwordStrength', PasswordStrength, ['password']);
|
|
|
|
}
|