mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 14:29:40 +02:00
10 lines
216 B
JavaScript
10 lines
216 B
JavaScript
|
import angular from 'angular';
|
||
|
|
||
|
angular.module('portainer.kubernetes').component('kubernetesSidebar', {
|
||
|
templateUrl: './kubernetes-sidebar.html',
|
||
|
bindings: {
|
||
|
endpointId: '<',
|
||
|
isSidebarOpen: '<',
|
||
|
},
|
||
|
});
|