Files for React Native Universal App tutorial.
Tutorial URL: https://www.youtube.com/watch?v=um90kBJ_hG0
- React Native
- React JS
- React Native Web
- Redux
- React Native Web
- Yarn Workspaces Documentation
- Dummy API
- Create React App
- Blog post talking about invalid hooks call warning
- How to import files from outside of root directory with React Native Metro bundler
To run the app you need yarn package manager. Once you have yarn installed, clone the repo and navigate to it's directory in terminal and run the following commands:
## to install the dependencies
yarn
## to run the app on iOS
cd packages/mobile/ios/ && pod install && cd ..
react-native run-ios
## to run the app on Android
react-native run-android
## to run the app on Web
cd packages/web
yarn start