generator-rockets-react-component
v0.1.0
Published
A react component generator
Downloads
2
Maintainers
Readme
generator-rockets-react-component
A react component generator
Installation
First, install Yeoman and generator-rockets-react-component using npm (we assume you have pre-installed node.js).
npm install -g yo
npm install -g generator-rockets-react-component
Generating Components
To generate a new component in your current directiory, run:
yo rockets-react-component
You will be prompted to specify some information about your new component:
- Component Name: string
- Connect to Redux: Y/n
A basic component with have the following directory structure:
└───NewComponent/
├───NewComponentContainer.js
├───NewComponentView.js
└───index.js
A component with redux enabled:
└───NewComponent/
├───NewComponentContainer.js
├───NewComponentView.js
├───actions.js
├───actionTypes.js
├───reducer.js
└───index.js
License
MIT © Fergus Farrell