mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 17:59:45 +02:00
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
import { EdgeStacksViewController } from './edgeStacksViewController';
|
||
|
|
||
|
angular.module('portainer.edge').component('edgeStacksView', {
|
||
|
templateUrl: './edgeStacksView.html',
|
||
|
controller: EdgeStacksViewController,
|
||
|
});
|