1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 21:39:40 +02:00
portainer/app/edge/react/components/index.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
364 B
TypeScript
Raw Normal View History

import angular from 'angular';
import { EdgeGroupsSelector } from '@/react/edge/components/EdgeGroupsSelector';
import { r2a } from '@/react-tools/react2angular';
export const componentsModule = angular
.module('portainer.edge.react.components', [])
.component(
'edgeGroupsSelector',
r2a(EdgeGroupsSelector, ['items', 'onChange', 'value'])
).name;