https://github.com/angular/angular
Raw File
Tip revision: 5b9c981b6d4e4f96236858773f84750a46260986 authored by Joey Perrott on 06 January 2021, 21:13:21 UTC
release: cut the v11.0.6 release (#40328)
Tip revision: 5b9c981
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