https://github.com/angular/angular
Raw File
Tip revision: d6679e2969d724e3cab9ece004d636cf036e1a6d authored by Alex Rickabaugh on 30 September 2021, 20:00:27 UTC
release: cut the v12.2.8 release (#43654)
Tip revision: d6679e2
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