···55Uses:
6677- [React Native](https://reactnative.dev)
88-- (blocked) [React Native for Web](https://necolas.github.io/react-native-web/)
99- - Needs [0.18 preview release #2248](https://github.com/necolas/react-native-web/pull/2248) to merge
88+- [React Native for Web](https://necolas.github.io/react-native-web/)
109- [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
1110- (todo) [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/)
1211- (todo) [Async Storage](https://github.com/react-native-async-storage/async-storage)
···1817 - `cd ios ; pod install` Installs the React Navigation deps ([info](https://reactnative.dev/docs/navigation#installation-and-setup)).
1918- To run the iOS simulator: `yarn ios`
2019- To run the Android simulator: `yarn android`
2020+- To run the Web app: `yarn web`
2121- Tips
2222 - `npx react-native info` Checks what has been installed.
2323 - Android instructions are a *little* inaccurate but not as much as you might think. I had to manually create a virtual device, then run `yarn android` twice (once to start the emulator and the second time to connect to it).
app.json
src/app.json
+1-1
index.js
index.native.js
···4455import {AppRegistry} from 'react-native';
66import App from './src/App';
77-import {name as appName} from './app.json';
77+import {name as appName} from './src/app.json';
8899AppRegistry.registerComponent(appName, () => App);