├── .babelrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── App.test.js ├── LICENSE.md ├── README.md ├── app.json ├── package.json ├── src ├── Actions │ └── FetchCoinData.js ├── Reducers │ ├── CryptoReducer.js │ └── index.js ├── Store.js ├── Utils │ ├── ActionTypes.js │ ├── CoinIcons.js │ └── Constants.js └── components │ ├── CoinCard.js │ ├── CryptoContainer.js │ ├── Header.js │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/App.js -------------------------------------------------------------------------------- /App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/App.test.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/app.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/package.json -------------------------------------------------------------------------------- /src/Actions/FetchCoinData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Actions/FetchCoinData.js -------------------------------------------------------------------------------- /src/Reducers/CryptoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Reducers/CryptoReducer.js -------------------------------------------------------------------------------- /src/Reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Reducers/index.js -------------------------------------------------------------------------------- /src/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Store.js -------------------------------------------------------------------------------- /src/Utils/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Utils/ActionTypes.js -------------------------------------------------------------------------------- /src/Utils/CoinIcons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Utils/CoinIcons.js -------------------------------------------------------------------------------- /src/Utils/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/Utils/Constants.js -------------------------------------------------------------------------------- /src/components/CoinCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/components/CoinCard.js -------------------------------------------------------------------------------- /src/components/CryptoContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/components/CryptoContainer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/src/components/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZilvinasKucinskas/cryptocurrency-tracker-react-native-redux/HEAD/yarn.lock --------------------------------------------------------------------------------