Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Last active February 23, 2021 11:19
Show Gist options
  • Save Bilkiss/3dfc1640c4c4051c3e5e24033e0669f1 to your computer and use it in GitHub Desktop.
Save Bilkiss/3dfc1640c4c4051c3e5e24033e0669f1 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import { MyService } from './my-service';
@Component({
selector: 'example-component',
template: 'More component example!'
})
export class ExampleComponent {
constructor(myService: MyService) {
console.log(myService); // MyService
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment