Run the below command to generate angular component in the project directory
ng generate component {component-name}
or
ng g c {component-name}
The below example shows creating a component with name as blog.
The command also declares the blog component in the ng module.
good post