Angular - Services and Dependency Injection
Identify the issue in this Angular service injection:
@Injectable()
export class UserService {}
@Component({selector: 'app-main', template: ''})
export class MainComponent {
constructor(private userService) {}
}