react-native-i18n/example/index.ios.js

7 lines
143 B
JavaScript
Raw Normal View History

2017-04-07 19:21:55 +02:00
// @flow
2017-04-03 17:14:36 +02:00
2017-04-07 19:21:55 +02:00
import { AppRegistry } from 'react-native';
2017-08-27 20:34:13 +02:00
import App from './src/App';
2017-04-03 17:14:36 +02:00
2017-08-27 20:34:13 +02:00
AppRegistry.registerComponent('RNI18nExample', () => App);