How to create a component in Angular / Everything about components in Angular
What is a component A component represents a view on the screen. Everything what we see on the screen is a component. A single page can be constituted of one component or many components. Also, a component can have child components. Example, a page can have a menu, a header and body. All can be contained in a single component or there can be a menu component, header component and a body component. Similarly, a single control on a page can be a component or a combination of components. Example, a table on a page can be a single component or it may be aRead More →