mirror of
https://gitlab.com/wheres-the-tp/ui-mobile.git
synced 2026-01-25 13:14:56 -06:00
Navigator was becoming cumbersome due to prop passing up the hierarchy. react-router-native is a more declartive approach and utilized react context to avoid prop passing.
12 lines
341 B
JavaScript
12 lines
341 B
JavaScript
/**
|
|
* Sample React Native App
|
|
* https://github.com/facebook/react-native
|
|
* @flow
|
|
*/
|
|
|
|
import { AppRegistry, UIManager } from 'react-native';
|
|
import App from './js/App';
|
|
|
|
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
|
|
|
|
AppRegistry.registerComponent('AreThereCookies', () => App);
|