1ng g component [directory-where-you-want-to-save-the-component]/[new-component-name]
2
3ng generate component [directory-where-you-want-to-save-the-component]/[new-component-name]
1
2├── src
3│ ├── app
4│ │ ├── admin
5│ │ │ ├── directives
6│ │ │ ├── pages
7│ │ │ │ ├── dashboard
8│ │ │ │ │ ├── dashboard.component.ts
9│ │ │ │ ├── rights
10│ │ │ │ │ ├── rights.component.ts
11│ │ │ │ ├── user
12│ │ │ │ │ ├── user.component.ts
13│ │ │ │ ├── admin.component.ts
14│ │ │ │ ├── admin.component.html
15│ │ │ │ ├── admin.component.css
16│ │ │ │ ├── index.ts
17│ │ │ ├── pipes
18│ │ │ ├── admin.module.ts
19│ │ │ ├── admin.routing.module.ts
20│ │ │ ├── index.ts
21│ │ ├── core
22│ │ │ ├── models
23│ │ │ │ ├── index.ts
24│ │ │ │ ├── repos.ts
25│ │ │ ├── services
26│ │ │ │ ├── github.service.ts
27│ │ │ │ ├── index.ts
28│ │ │ ├── core.module.ts
29│ │ │ ├── index.ts
30│ │ ├── github
31│ │ │ ├── pages
32│ │ │ │ ├── repolist
33│ │ │ │ │ ├── repolist.component.ts
34│ │ │ │ │ ├── repolist.component.html
35│ │ │ ├── github.routing.module.ts
36│ │ │ ├── github.module.ts
37│ │ │ ├── index.ts
38│ │ ├── home
39│ │ │ ├── pages
40│ │ │ │ ├── aboutus
41│ │ │ │ │ ├── about-us.component.ts
42│ │ │ │ ├── contactus
43│ │ │ │ │ ├── contact-us.component.ts
44│ │ │ │ ├── home
45│ │ │ │ │ ├── home-us.component.ts
46│ │ │ │ ├── index.ts
47│ │ │ ├── home-routing.module.ts
48│ │ │ ├── home.module.ts
49│ │ │ ├── index.ts
50│ │ ├── shared
51│ │ │ ├── layout
52│ │ │ │ ├── footer
53│ │ │ │ │ ├── footer.component.ts
54│ │ │ │ │ ├── footer.component.html
55│ │ │ │ ├── header
56│ │ │ │ │ ├── header.component.ts
57│ │ │ │ │ ├── header.component.html
58│ │ │ ├── index.ts
59│ ├── app-routing.module.ts
60│ ├── app-wildcard-routing.module.ts
61│ ├── app.component.css
62│ ├── app.component.html
63│ ├── app.component.spec.ts
64│ ├── app.component.ts
65│ ├── app.module.ts
66│ ├── not-found.component.ts
67
68