10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
import angular from 'angular';
|
|
|
|
angular.module('portainer.agent').component('nodeSelector', {
|
|
templateUrl: './nodeSelector.html',
|
|
controller: 'NodeSelectorController',
|
|
bindings: {
|
|
model: '='
|
|
}
|
|
});
|