create a component folder angular code example
Example 1: creare component in anglar
ng generate component [component-name]
Example 2: generate component angular without folder
Angular:
Add --flat flag.
ng g c yourcomponentname --flat
--flat=true|false
When true, creates the new files at the top level of the current project.
Default: false
Example 3: ng g c
ng generate component [options]