chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:38:36 +08:00
commit 8e2a6eb840
10194 changed files with 1593658 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
## Examples
##### Create a Component
Generate a component named `MyComponent` at `apps/my-app/src/app/my-component/my-component.tsx`:
```shell
nx g component apps/my-app/src/app/my-component/my-component.tsx
```
##### Create a Component with a Different Symbol Name
Generate a component named `Custom` at `apps/my-app/src/app/my-component/my-component.tsx`:
```shell
nx g component apps/my-app/src/app/my-component/my-component.tsx --name=custom
```
##### Create a Component Omitting the File Extension
Generate a component named `MyComponent` at `apps/my-app/src/app/my-component/my-component.tsx` without specifying the file extension:
```shell
nx g component apps/my-app/src/app/my-component/my-component
```