├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vscode └── launchReactNative.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativets │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios ├── ReactNativeTS-tvOS │ └── Info.plist ├── ReactNativeTS-tvOSTests │ └── Info.plist ├── ReactNativeTS.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeTS-tvOS.xcscheme │ │ └── ReactNativeTS.xcscheme ├── ReactNativeTS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeTSTests │ ├── Info.plist │ └── ReactNativeTSTests.m ├── package.json ├── src ├── actions │ ├── actionTypes.ts │ └── app.actions.ts ├── components │ ├── Global │ │ └── Drawer.tsx │ └── HelloWorld │ │ └── index.tsx ├── declarations.d.ts ├── index.android.tsx ├── index.ios.tsx ├── interfaces │ ├── IAction.ts │ ├── IApp.ts │ └── IRootState.ts ├── reducers │ ├── app.reducer.ts │ └── root.reducer.ts ├── screens.tsx └── store │ ├── configureStore.tsx │ └── initialState.tsx ├── tsconfig.json ├── typings.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launchReactNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/.vscode/launchReactNative.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativets/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/java/com/reactnativets/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativets/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/java/com/reactnativets/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | import App from './build' -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/ReactNativeTS-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTS-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeTS.xcodeproj/xcshareddata/xcschemes/ReactNativeTS-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS.xcodeproj/xcshareddata/xcschemes/ReactNativeTS-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTS.xcodeproj/xcshareddata/xcschemes/ReactNativeTS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS.xcodeproj/xcshareddata/xcschemes/ReactNativeTS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeTS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeTS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeTS/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeTS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeTS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTS/main.m -------------------------------------------------------------------------------- /ios/ReactNativeTSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeTSTests/ReactNativeTSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/ios/ReactNativeTSTests/ReactNativeTSTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/actions/actionTypes.ts -------------------------------------------------------------------------------- /src/actions/app.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/actions/app.actions.ts -------------------------------------------------------------------------------- /src/components/Global/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/components/Global/Drawer.tsx -------------------------------------------------------------------------------- /src/components/HelloWorld/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/components/HelloWorld/index.tsx -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/index.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/index.android.tsx -------------------------------------------------------------------------------- /src/index.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/index.ios.tsx -------------------------------------------------------------------------------- /src/interfaces/IAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/interfaces/IAction.ts -------------------------------------------------------------------------------- /src/interfaces/IApp.ts: -------------------------------------------------------------------------------- 1 | export interface IApp { 2 | loading: boolean; 3 | } -------------------------------------------------------------------------------- /src/interfaces/IRootState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/interfaces/IRootState.ts -------------------------------------------------------------------------------- /src/reducers/app.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/reducers/app.reducer.ts -------------------------------------------------------------------------------- /src/reducers/root.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/reducers/root.reducer.ts -------------------------------------------------------------------------------- /src/screens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/screens.tsx -------------------------------------------------------------------------------- /src/store/configureStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/store/configureStore.tsx -------------------------------------------------------------------------------- /src/store/initialState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/src/store/initialState.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/typings.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EstebanFuentealba/react-native-typescript/HEAD/yarn.lock --------------------------------------------------------------------------------