Answers for "Create new component in Angular"

3

how to create new component in angular

//First go in the folder where you want to add new component in angular then use given command
ng g c componentName 
//or
ng generate component componentName

//If you are in root folder and want to make a sub component then 
// componentName is complete path of that folder with componentName
Posted by: Guest on August-10-2021
16

angular generate component

ng g component componentname
Posted by: Guest on March-26-2020
6

creare component in anglar

ng generate component [component-name]
Posted by: Guest on July-03-2020
8

angular new component

ng g c componentName
Posted by: Guest on April-23-2020
2

angular add component

ng generate component [name]
Posted by: Guest on May-25-2020
0

Create new component in Angular

ng g c NAMEOFIT
Posted by: Guest on June-25-2021

Code answers related to "Create new component in Angular"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language