generator-react-native-component
v1.1.2
Published
A simple ReactNative component generator with basic needs
Downloads
26
Readme
generator-react-native-component
A simple generator which creates ReactNative component with basic files and structure
Install it using using npm
npm install -g yo generator-react-native-componentTo create a component
yo react-native-component MyComponentIt will create a component with following files in the current directory
MyComponent
- index.js
- index.android.js
- index.ios.js
- styles.jsIf you want to create the component under some other folder, use the --inside components option
yo react-native-component MyComponent --inside componentsIt will create the component inside components folder exists in current directory
