mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 01:28:16 +00:00
* [Example] Get tests passing on ReduxExample and NavigationPlayground * [CI] Use more vague versioning so we're always up to date * [CI] Test that the example apps run without error * [CI] Install the current local version of react-nav before testing * Fix tabs => spaces in ReduxExample/package.json * Remove LinkingExample entirely It's now part of NavigationPlayground.
10 lines
164 B
JavaScript
10 lines
164 B
JavaScript
import {
|
|
AppRegistry,
|
|
} from 'react-native';
|
|
|
|
import App from './js/App';
|
|
|
|
AppRegistry.registerComponent('NavigationPlayground', () => App);
|
|
|
|
export default App;
|