├── README.md ├── index.android.js ├── index.ios.js ├── js ├── app │ ├── app.reducer.js │ ├── index.js │ ├── layout.js │ └── reducers.js ├── counter │ ├── counter.actions.js │ ├── counter.component.js │ └── counter.reducer.js ├── shared │ └── PlatformStyleSheet.js └── template │ ├── template.actions.js │ ├── template.component.js │ └── template.reducer.js └── package.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/README.md -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/index.ios.js -------------------------------------------------------------------------------- /js/app/app.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/app/app.reducer.js -------------------------------------------------------------------------------- /js/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/app/index.js -------------------------------------------------------------------------------- /js/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/app/layout.js -------------------------------------------------------------------------------- /js/app/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/app/reducers.js -------------------------------------------------------------------------------- /js/counter/counter.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/counter/counter.actions.js -------------------------------------------------------------------------------- /js/counter/counter.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/counter/counter.component.js -------------------------------------------------------------------------------- /js/counter/counter.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/counter/counter.reducer.js -------------------------------------------------------------------------------- /js/shared/PlatformStyleSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/shared/PlatformStyleSheet.js -------------------------------------------------------------------------------- /js/template/template.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/template/template.actions.js -------------------------------------------------------------------------------- /js/template/template.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/template/template.component.js -------------------------------------------------------------------------------- /js/template/template.reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/js/template/template.reducer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iSimar/React-Native-Starter-Pack/HEAD/package.json --------------------------------------------------------------------------------