···77- [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
1010-- (todo) [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
1010+- [React Navigation](https://reactnative.dev/docs/navigation#react-navigation)
1111- (todo) [MobX](https://mobx.js.org/README.html) and [MobX State Tree](https://mobx-state-tree.js.org/)
1212- (todo) [Async Storage](https://github.com/react-native-async-storage/async-storage)
13131414## Build instructions
15151616- Setup your environment [using the react native instructions](https://reactnative.dev/docs/environment-setup).
1717+- After initial setup:
1818+ - `cd ios ; pod install` Installs the React Navigation deps ([info](https://reactnative.dev/docs/navigation#installation-and-setup)).
1719- To run the iOS simulator: `yarn ios`
1820- To run the Android simulator: `yarn android`
1921- Tips
+4-2
__tests__/App-test.tsx
···4455import 'react-native';
66import React from 'react';
77-import App from '../App';
77+import App from '../src/App';
8899// Note: test renderer must be required after react-native.
1010import renderer from 'react-test-renderer';
11111212it('renders correctly', () => {
1313- renderer.create(<App />);
1313+ renderer.act(() => {
1414+ renderer.create(<App />);
1515+ });
1416});
+1-1
index.js
···33 */
4455import {AppRegistry} from 'react-native';
66-import App from './App';
66+import App from './src/App';
77import {name as appName} from './app.json';
8899AppRegistry.registerComponent(appName, () => App);