mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
import { r2a } from '@/react-tools/react2angular';
|
|
|
|
import { SwitchField } from '@@/form-components/SwitchField';
|
|
|
|
export const switchField = r2a(SwitchField, [
|
|
'tooltip',
|
|
'checked',
|
|
'label',
|
|
'name',
|
|
'labelClass',
|
|
'dataCy',
|
|
'disabled',
|
|
'onChange',
|
|
'featureId',
|
|
]);
|