mirror of https://github.com/portainer/portainer
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
import angular from 'angular';
|
|||
|
|||
import { EdgeGroupsController } from './edgeGroupsViewController';
|
|||
|
|||
angular.module('portainer.edge').component('edgeGroupsView', {
|
|||
templateUrl: './edgeGroupsView.html',
|
|||
controller: EdgeGroupsController,
|
|||
});
|