@datarockets/react-native-template-js
v0.1.1
Published
React Native template project with JS
Downloads
11
Readme
🚀 React Native Template JS
📦 What's included
- Preconfigured
react-navigation,redux,react-native-configandreact-native-code-push - Two preconfigured environments:
devandprod - Easy components, screens and models generation by template
🧱 Structure
components
src/components/AComponent
├── index.js
└── styles.jsscreens
src/screens/AScreen
├── index.js
├── styles.js
└── view.jsmodels
src/models/AModel
├── actions.js
├── api.js
├── reducer.js
├── saga.js
├── selectors.js
└── types.js🏗 Usage
Simply start you project using the template:
npx react-native init MyApp --template @datarockets/react-native-template-jsIf you experience issue initializing the project with the template try to use the latest CLI explicitly:
npx react-native@latest init MyApp --template @datarockets/react-native-template-js