mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 05:08:36 +08:00
11 lines
389 B
TypeScript
11 lines
389 B
TypeScript
import { react2AngularDirective } from 'app/core/utils/react2angular';
|
|
import { PasswordStrength } from './components/PasswordStrength';
|
|
import PageHeader from './components/PageHeader';
|
|
|
|
export function registerAngularDirectives() {
|
|
|
|
react2AngularDirective('passwordStrength', PasswordStrength, ['password']);
|
|
react2AngularDirective('pageHeader', PageHeader, ['model', "noTabs"]);
|
|
|
|
}
|