treetrail-frontend/src/app/about/about.component.ts
phil 963d3437c0
All checks were successful
/ build (push) Successful in 27s
Frontend version: disable - method to be polished
2024-11-04 03:49:11 +01:00

21 lines
515 B
TypeScript

import { Component, OnInit } from '@angular/core'
import { ConfigService } from '../config.service'
// TODO: get the dynamic version from the git tags
//import packageJson from '../../../package.json'
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrls: ['./about.component.scss']
})
export class AboutComponent implements OnInit {
constructor(
public configService: ConfigService,
) { }
//public version: string = packageJson.version
ngOnInit(): void {
}
}