openaire-library/sharedComponents/bottom.component.ts

15 lines
329 B
TypeScript
Raw Normal View History

import { Component, Input } from '@angular/core';
import 'rxjs/Rx';
@Component({
selector: 'bottom',
templateUrl: 'bottom.component.html'
})
export class BottomComponent {
@Input() showSocialButton:boolean = true;
@Input() showOpenaire:boolean = false;
@Input() showMenu:boolean = true;
@Input() showDnet:boolean = true;
}