Login
Remember
Register
Ask a Question
What are the key components of Angular?
0
votes
asked
Jul 10, 2023
in
Angular
by
Robindeniel
What are the key components of Angular?
angularcomponent
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 10, 2023
by
Robindeniel
Angular has the key components below,
Component: These are the basic building blocks of an Angular application to control HTML views.
Modules: An Angular module is a set of angular basic building blocks like components, directives, services etc. An application is divided into logical pieces and each piece of code is called as "module" which perform a single task.
Templates: These represent the views of an Angular application.
Services: Are used to create components which can be shared across the entire application.
Metadata: This can be used to add more data to an Angular class.
...