in angular can i use the imported component or i have to declare it in the constructor code example
Example: how to inject service in component angular 6
you can inject service in components constructor:
constructor(public anyService: Service){}
you can inject service in components constructor:
constructor(public anyService: Service){}