15 lines
329 B
TypeScript
15 lines
329 B
TypeScript
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;
|
|
}
|