dappros/ethora

View on GitHub
client-reactnative/index.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @format
 */
import 'react-native-gesture-handler';

import './shim';
import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
import 'react-native-url-polyfill/auto';

AppRegistry.registerComponent(appName, () => App);