mirror of
https://github.com/portainer/portainer.git
synced 2025-07-27 17:29:39 +02:00
14 lines
479 B
TypeScript
14 lines
479 B
TypeScript
|
import angular from 'angular';
|
||
|
|
||
|
import { r2a } from '@/react-tools/react2angular';
|
||
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
||
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
||
|
import { CreateView } from '@/react/edge/edge-stacks/CreateView/CreateView';
|
||
|
|
||
|
export const stacksModule = angular
|
||
|
.module('portainer.edge.react.views.stacks', [])
|
||
|
.component(
|
||
|
'edgeStacksCreateView',
|
||
|
r2a(withCurrentUser(withUIRouter(CreateView)), [])
|
||
|
).name;
|