You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { environment } from '@env/environment';
|
|
|
|
@Component({
|
|
selector: 'app-about',
|
|
templateUrl: './about.component.html',
|
|
styleUrls: ['./about.component.scss']
|
|
})
|
|
export class AboutComponent implements OnInit {
|
|
version: string | null = environment.version;
|
|
|
|
constructor() {}
|
|
|
|
ngOnInit() {}
|
|
}
|
|
|