https://github.com/angular/angular
Raw File
Tip revision: bd58e129cf666abe5044638d93378d9681488667 authored by Alex Rickabaugh on 12 June 2017, 22:36:19 UTC
docs: add changelog for 4.2.2
Tip revision: bd58e12
footer.component.ts
import { Component, Input } from '@angular/core';

import { NavigationNode, VersionInfo } from 'app/navigation/navigation.service';

@Component({
  selector: 'aio-footer',
  templateUrl: 'footer.component.html'
})
export class FooterComponent {
  @Input() nodes: NavigationNode[];
  @Input() versionInfo: VersionInfo;
}
back to top