import { Component, Input, OnInit } from '@angular/core'; @Component({ selector: 'agm-footer', template: ` ` }) export class AppFooterComponent implements OnInit { @Input() showLang: boolean; ngOnInit() { } }