Files
nrwl--nx/packages/next/docs/component-examples.md
T
2026-07-13 12:38:36 +08:00

721 B

Examples

Create a Component

Generate a component named MyComponent at apps/my-app/src/app/my-component/my-component.tsx:

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:

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:

nx g component apps/my-app/src/app/my-component/my-component