2017-10-22 07:03:26 +02:00
|
|
|
import { react2AngularDirective } from 'app/core/utils/react2angular';
|
2017-10-22 12:48:20 +02:00
|
|
|
import { PasswordStrength } from './components/PasswordStrength';
|
2017-12-06 17:36:44 +01:00
|
|
|
import PageHeader from './components/PageHeader/PageHeader';
|
2017-12-04 16:18:46 +01:00
|
|
|
import EmptyListCTA from './components/EmptyListCTA/EmptyListCTA';
|
2017-10-22 07:03:26 +02:00
|
|
|
|
|
|
|
|
export function registerAngularDirectives() {
|
|
|
|
|
react2AngularDirective('passwordStrength', PasswordStrength, ['password']);
|
2017-12-06 17:36:44 +01:00
|
|
|
react2AngularDirective('pageHeader', PageHeader, ['model', 'noTabs']);
|
2017-12-04 16:18:46 +01:00
|
|
|
react2AngularDirective('emptyListCta', EmptyListCTA, ['model']);
|
2017-10-22 07:03:26 +02:00
|
|
|
}
|