Upgrade the ReduxExample app (use CRNA) (#2171)

* [ReduxExample] Delete android and ios dirs

* [ReduxExample] Upgrade using create-react-native-app

* [ReduxExample] Add postinstall script to clean up files Yarn copies in

Yarn copies them when installing locally, causing lots of @proviesModule collisions.

* [ReduxExample] Upgrade expo and other dependencies

* [ReduxExample] Don't delete .git just in case
This commit is contained in:
Kevin Cooper
2017-09-06 22:02:57 -04:00
committed by Spencer Carli
parent af53b0e5b8
commit 312b68790a
44 changed files with 2920 additions and 2867 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import App from './App';
import renderer from 'react-test-renderer';
it('renders without crashing', () => {
const rendered = renderer.create(<App />).toJSON();
expect(rendered).toBeTruthy();
});