Fix bad imports path

This commit is contained in:
Mathieu Acthernoene 2017-08-27 20:34:13 +02:00
parent d181ecb697
commit 716463996b
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
// @flow // @flow
import { AppRegistry } from 'react-native'; import { AppRegistry } from 'react-native';
import Screen from './screen'; import App from './src/App';
AppRegistry.registerComponent('RNI18nExample', () => Screen); AppRegistry.registerComponent('RNI18nExample', () => App);

View File

@ -1,6 +1,6 @@
// @flow // @flow
import { AppRegistry } from 'react-native'; import { AppRegistry } from 'react-native';
import Screen from './screen'; import App from './src/App';
AppRegistry.registerComponent('RNI18nExample', () => Screen); AppRegistry.registerComponent('RNI18nExample', () => App);