https://github.com/angular/angular
Raw File
Tip revision: 2b6749f5a0448153a14729b7d9e22c9d6c87712e authored by Andrew Scott on 16 March 2022, 19:41:35 UTC
release: cut the v14.0.0-next.7 release (#45368)
Tip revision: 2b6749f
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