mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 09:49:40 +02:00
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 };
|