Files
rn-app/index.js
2025-08-27 19:20:10 +08:00

11 lines
226 B
JavaScript

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