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

7 lines
148 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';
import Screen from './screen';
2017-04-03 17:14:36 +02:00
2017-04-07 19:21:55 +02:00
AppRegistry.registerComponent('RNI18nExample', () => Screen);