pipeline-builder-demo
Version:
Pipeline Builder
21 lines (15 loc) • 393 B
text/typescript
import { Component, OnInit } from '@angular/core';
({
selector: 'pb-footer',
templateUrl: './footer.component.html',
styleUrls: ['footer.component.scss']
})
export class FooterComponent implements OnInit {
year: number;
version: string;
constructor() { }
ngOnInit() {
this.year = new Date().getFullYear();
this.version = '0.1.0';
}
}