mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 08:19:40 +02:00
14 lines
495 B
TypeScript
14 lines
495 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 { AppTemplatesView } from '@/react/edge/templates/AppTemplatesView';
|
|
|
|
export const templatesModule = angular
|
|
.module('portainer.app.react.components.templates', [])
|
|
|
|
.component(
|
|
'edgeAppTemplatesView',
|
|
r2a(withCurrentUser(withUIRouter(AppTemplatesView)), [])
|
|
).name;
|