Angular - Services and Dependency Injection
Examine this Angular component code:
What is the issue with this code?
import { Component } from '@angular/core';
import { LoggingService } from './logging.service';
@Component({ selector: 'app-log', template: '' })
export class LogComponent {
constructor(private loggingService) {}
}What is the issue with this code?
