Projekt

Obecné

Profil

Stáhnout (419 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { Component, OnInit } from '@angular/core';
2
import { LoggerService } from '../../../services/logger/logger.service';
3

    
4
@Component({
5
  selector: 'app-help',
6
  templateUrl: './help.component.html',
7
  styleUrls: ['./help.component.css']
8
})
9
export class HelpComponent implements OnInit {
10

    
11
  constructor( private LOGGER: LoggerService ) { }
12

    
13
  ngOnInit(): void {
14
    this.LOGGER.info('help component on init');
15
  }
16

    
17
}
(4-4/4)