mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 22:51:57 +08:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
import { AppRegistry } from 'react-native';
|
|
|
|
// Need to add extension or eslint confuses it with app.json
|
|
import App from './App.tsx';
|
|
|
|
AppRegistry.registerComponent('ReactNavigationExample', () => App);
|