[Angular] Creating Components with the CLI
We can create component manually by adding a folder with our component or we use the CLI with :
ng generate component [folder-name]
or simply you can type :
ng g c [folder-name]
Once you enter, it will give you a new folder in your app folder with ...
suzie.hashnode.dev1 min read