Last active
February 23, 2021 11:19
-
-
Save Bilkiss/3dfc1640c4c4051c3e5e24033e0669f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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