Sengi-Windows-MacOS-Linux/src/app/components/floating-column/settings/settings.component.ts

18 lines
422 B
TypeScript
Raw Normal View History

2018-09-22 06:22:51 +02:00
import { Component, OnInit } from '@angular/core';
2019-05-22 02:18:01 +02:00
import { environment } from '../../../../environments/environment';
2018-09-22 06:22:51 +02:00
@Component({
2019-05-21 07:19:34 +02:00
selector: 'app-settings',
templateUrl: './settings.component.html',
styleUrls: ['./settings.component.scss']
2018-09-22 06:22:51 +02:00
})
export class SettingsComponent implements OnInit {
2019-05-21 07:19:34 +02:00
version: string;
2018-09-22 06:22:51 +02:00
2019-05-21 07:19:34 +02:00
constructor() { }
ngOnInit() {
this.version = environment.VERSION;
}
2019-05-22 02:18:01 +02:00
}