mirror of
https://github.com/portainer/portainer.git
synced 2025-07-20 22:09:41 +02:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
import { EditEdgeStackViewController } from './editEdgeStackViewController';
|
||
|
|
||
|
angular.module('portainer.edge').component('editEdgeStackView', {
|
||
|
templateUrl: './editEdgeStackView.html',
|
||
|
controller: EditEdgeStackViewController,
|
||
|
});
|