Angular6 hiding component selector
It’s sometimes useful to have angular’s component selector not to be rendered in the page, as sometimes this can cause problems with CSS rendering (since we will have an intermediate tag in between 2 tags) For example : @Component({ selector: ‘my-component’})export class MyComponent{@Input()title:String;}… Now you…