You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Angular components are classes that serve as a controller for the user interfaces using a template. @Component decorator used to define components,
4
+
it provides metadata like selector, template, style and other properties which determine how the component should be processed instantiated and used at run time execution.
5
+
6
+
## What is Angular Component?
7
+
Components are building blocks of any Angular application. These are like Views of MVC application. The Component provides templates of application, logic to manage data required for templates and stylesheets.
8
+
9
+
1.**src** folder has all required component, typescript, modules.
0 commit comments