openaire-library/sharedComponents/other-portals/other-portals.component.ts

14 lines
344 B
TypeScript

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 {
@Input() portal = 'Connect';
@Input() properties: EnvProperties = null;
constructor() {}
}