764 B
764 B
Examples
Simple Component
Create a component named MyComponent at libs/ui/src/my-component.tsx:
nx g @nx/react:component libs/ui/src/my-component.tsx
With a Different Symbol Name
Create a component named Custom at libs/ui/src/my-component.tsx:
nx g @nx/react:component libs/ui/src/my-component.tsx --name=custom
Omitting the File Extension
Create a component named MyComponent at libs/ui/src/my-component.tsx without specifying the file extension:
nx g @nx/react:component libs/ui/src/my-component
Class Component
Create a class component named MyComponent at libs/ui/src/my-component.tsx:
nx g @nx/react:component libs/ui/src/my-component --classComponent