mirror of https://github.com/portainer/portainer
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
import angular from 'angular';
|
|||
|
|||
import './edgeStackStatus.css';
|
|||
|
|||
angular.module('portainer.edge').component('edgeStackStatus', {
|
|||
templateUrl: './edgeStackStatus.html',
|
|||
controller: 'EdgeStackStatusController',
|
|||
bindings: {
|
|||
stackStatus: '<',
|
|||
},
|
|||
});
|