Skip to content

Instantly share code, notes, and snippets.

@wKoza
Last active December 25, 2016 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wKoza/cd9b292469cfdfc43b0b6e9525f15d5d to your computer and use it in GitHub Desktop.
Save wKoza/cd9b292469cfdfc43b0b6e9525f15d5d to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
import {LoggerService} from "./logger.service";
@Component({
selector: 'app-root',
template: 'Bonjour learn-angular.fr !',
})
export class AppComponent {
constructor(private logger:LoggerService){
this.logger.debug('Dans le constructeur ...');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment