react-native-keychain/KeychainExample/index.js

6 lines
167 B
JavaScript
Raw Permalink Normal View History

2018-01-08 19:15:36 +00:00
import { AppRegistry } from 'react-native';
import App from './App';
2018-09-30 12:31:59 +00:00
import { name as appName } from './app.json';
2018-01-08 19:15:36 +00:00
2018-09-30 12:31:59 +00:00
AppRegistry.registerComponent(appName, () => App);