Projekt

Obecné

Profil

Stáhnout (429 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-search',
6
  templateUrl: './search.component.html',
7
  styleUrls: ['./search.component.css']
8
})
9
export class SearchComponent implements OnInit {
10

    
11
  constructor( private LOGGER: LoggerService ) { }
12

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

    
17
}
(4-4/4)