mirror of https://github.com/portainer/portainer
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
import { react2angular } from '@/react-tools/react2angular';
|
|
|
|
import { TemplateListDropdown } from './TemplateListDropdown';
|
|
|
|
const TemplateListDropdownAngular = react2angular(TemplateListDropdown, [
|
|
'options',
|
|
'onChange',
|
|
'placeholder',
|
|
'value',
|
|
]);
|
|
export { TemplateListDropdown, TemplateListDropdownAngular };
|