summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/plugin-not-connected/plugin-not-connected.component.ts
blob: 6cc2b39b89484a268df2caf4324ab76bd0fdb1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {Component, Input} from "@angular/core";

@Component({
    selector: 'plugin-not-connected',
    templateUrl: './plugin-not-connected.component.html',
    styleUrls:['plugin-not-connected.component.less']
})
export class PluginNotConnectedComponent {

    @Input() pluginName: string;

    constructor() {

    }
}