2019-07-10 10:54:37 +02:00
|
|
|
import {Component, Input} from '@angular/core';
|
|
|
|
import {EnvProperties} from "../../utils/properties/env-properties";
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'other-portals',
|
|
|
|
templateUrl: 'other-portals.component.html'
|
|
|
|
})
|
|
|
|
export class OtherPortalsComponent {
|
2019-07-10 11:24:26 +02:00
|
|
|
@Input() portal = 'connect';
|
2019-07-10 10:54:37 +02:00
|
|
|
@Input() properties: EnvProperties = null;
|
|
|
|
|
|
|
|
constructor() {}
|
|
|
|
}
|