Project

General

Profile

1
import { Component, Input } from '@angular/core';
2
import 'rxjs/Rx';
3

    
4
@Component({
5
  selector: 'bottom',
6
  templateUrl: 'bottom.component.html'
7
})
8
export class BottomComponent {
9

    
10
@Input() showSocialButton:boolean = true;
11
@Input() showOpenaire:boolean = false;
12
@Input() showMenu:boolean = true;
13
@Input() showDnet:boolean = true;
14
}
(2-2/9)