mirror of
https://github.com/balzack/databag.git
synced 2025-04-27 03:55:17 +00:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
import 'react-native-gesture-handler';
|
|
|
|
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|