Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 657 Bytes

File metadata and controls

39 lines (20 loc) · 657 Bytes

Generate a single-use component

npm run generate page

Generate page called Home

npm run generate page Home

Generate a reusable component

npm run generate component

Generate a component called DogCard

npm run generate component DogCard

Generate a custom hook

npm run generate hook

Generate a hook called useAsync

npm run generate hook useAsync

Generate a service

npm run generate service

Generate a service called petApi

npm run generate service petApi

Generate a redux module with thunk

npm run generate store-thunk

Generate a redux module with sagas

npm run generate store-sagas