databag/app/mobile/index.js
2023-07-26 14:39:17 -07:00

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);