MyAccountApp/index.js
2024-03-18 23:58:51 +08:00

11 lines
226 B
JavaScript

/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './src/App';
import {name as appName} from './app.json';
import 'react-native-gesture-handler';
AppRegistry.registerComponent(appName, () => App);