2018-03-30 21:22:15 -04:00
|
|
|
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
|
|
|
|
import { BridgeComponent } from "../bridge.component";
|
|
|
|
|
|
|
|
@Component({
|
2021-09-01 19:01:01 -04:00
|
|
|
selector: "app-bridge-config",
|
2018-03-30 21:22:15 -04:00
|
|
|
templateUrl: "config-screen.bridge.component.html",
|
|
|
|
styleUrls: ["config-screen.bridge.component.scss"],
|
|
|
|
})
|
|
|
|
export class ConfigScreenBridgeComponent {
|
|
|
|
@Input() bridgeComponent: BridgeComponent<any>;
|
2021-09-01 19:01:01 -04:00
|
|
|
@ContentChild(TemplateRef, { static: false })
|
|
|
|
bridgeParamsTemplate: TemplateRef<any>;
|
2018-03-30 21:22:15 -04:00
|
|
|
|
2021-09-01 19:01:01 -04:00
|
|
|
constructor() {}
|
|
|
|
}
|