18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
import { ConfigService } from '../config.service'
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-about',
|
||
|
templateUrl: './about.component.html',
|
||
|
styleUrls: ['./about.component.scss']
|
||
|
})
|
||
|
export class AboutComponent implements OnInit {
|
||
|
constructor(
|
||
|
public configService: ConfigService,
|
||
|
) { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
}
|