blob: 4117260fa2950f1b74df6db447e07b848ac10b1e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* @format
*/
import 'react-native-gesture-handler';
import {AppRegistry} from 'react-native';
import App from './src';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);
|