Working with Angular 5 Components
Hey all. From the previous article we got to know the way of creating an Angular5 Project.Today we will be looking forward on Angular Components. In Angular, a Component is a special kind of directive that uses a simpler configuration which is suitable for a component-based application structure. As an example we can create separate components for header, sidebar and footer of a web project. So that we can easily call them anywhere in our project. First lets look at the Angular Directory Structure. In here all the workings in the project is done in the src folder .If we go through the src folder we can see an app folder in it.components are there in the app folder. The front view of the project is designed from the app.component.html file which is in the app folder.All the css changes are done by css file in it. Now create a directory to store all components you create in the app folder.The directory structure will looks like, Now lets create a co