Supercharge React
Installation
Go to the link below and click Install .
Visual Studio Code Marketplace
Commands
Davinci command execution
Running Execute Davinci command allows you to run commands available from the Davinci packages.
Generators
Powered by @toptal/davinci-code, which is part of Davinci CLI.
Command |
Output |
New Module |
src/modules/<your-module> |
New Component |
src/modules/<your-module>/components/<your-component> |
New Page |
src/modules/<your-module>/pages/<your-component> |
Using these commands will generate a folder structure in this format:
├── src/
├── modules/
├── core/
│ ├── index.ts
│ └── components/
│ └── Button/
│ ├── Button.tsx
│ ├── index.tsx
│ └── style.ts
└── jobs/
├── index.ts
├── components/
│ ├── Jobs/
│ │ ├── Jobs.tsx
│ │ ├── index.ts
│ │ ├── style.ts
│ │ └── test.tsx
│ └── Offers/
│ ├── Offers.tsx
│ ├── index.ts
│ ├── style.ts
│ └── test.tsx
└── pages/
├── index.ts
└── JobsSearch/
├── JobsSearch.tsx
├── index.ts
└── style.ts
CI
| |