https://github.com/angular/angular
Raw File
Tip revision: 44c1770fc9f185079ba7bceb3a83d42c131b7207 authored by Dylan Hunn on 19 October 2022, 21:45:08 UTC
release: cut the v15.0.0-rc.0 release
Tip revision: 44c1770
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 | undefined;
}
back to top