jverification-react-native
Version:
React Native JVerification component for Android and iOS
16 lines (13 loc) • 501 B
JavaScript
/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
import CustomView1 from './CustomView1';
import CustomView2 from './CustomView2';
import CustomView3 from './CustomView3';
AppRegistry.registerComponent(appName, () => App);
AppRegistry.registerComponent('customView1', () => CustomView1);
AppRegistry.registerComponent('customView2', () => CustomView2);
AppRegistry.registerComponent('customView3', () => CustomView3);