0 votes
in Angular by
How does angular finds components, directives and pipes?

1 Answer

0 votes
by

The Angular compiler finds a component or directive in a template when it can match the selector of that component or directive in that template. Whereas it finds a pipe if the pipe's name appears within the pipe syntax of the template HTML.

...