Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created February 5, 2017 10:04
Show Gist options
  • Save codemilli/c849c50eecca35c510b619032cbc0153 to your computer and use it in GitHub Desktop.
Save codemilli/c849c50eecca35c510b619032cbc0153 to your computer and use it in GitHub Desktop.
@import { Injectable, Component } from '@angular/core';
@Injectable()
export class AService {
// ...
}
@Component({
// ...
providers: [ AService ]
})
export class AComponent {
constructor(public aService: AService) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment