···5Uses:
67- [React Native](https://reactnative.dev)
8-- (blocked) [React Native for Web](https://necolas.github.io/react-native-web/)
9- - Needs [0.18 preview release #2248](https://github.com/necolas/react-native-web/pull/2248) to merge
10- [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
11- (todo) [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/)
12- (todo) [Async Storage](https://github.com/react-native-async-storage/async-storage)
···18 - `cd ios ; pod install` Installs the React Navigation deps ([info](https://reactnative.dev/docs/navigation#installation-and-setup)).
19- To run the iOS simulator: `yarn ios`
20- To run the Android simulator: `yarn android`
021- Tips
22 - `npx react-native info` Checks what has been installed.
23 - 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).
···5Uses:
67- [React Native](https://reactnative.dev)
8+- [React Native for Web](https://necolas.github.io/react-native-web/)
09- [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
10- (todo) [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/)
11- (todo) [Async Storage](https://github.com/react-native-async-storage/async-storage)
···17 - `cd ios ; pod install` Installs the React Navigation deps ([info](https://reactnative.dev/docs/navigation#installation-and-setup)).
18- To run the iOS simulator: `yarn ios`
19- To run the Android simulator: `yarn android`
20+- To run the Web app: `yarn web`
21- Tips
22 - `npx react-native info` Checks what has been installed.
23 - 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
···45import {AppRegistry} from 'react-native';
6import App from './src/App';
7-import {name as appName} from './app.json';
89AppRegistry.registerComponent(appName, () => App);
···45import {AppRegistry} from 'react-native';
6import App from './src/App';
7+import {name as appName} from './src/app.json';
89AppRegistry.registerComponent(appName, () => App);