index.js 237 B

12345678910
  1. import { AppRegistry } from 'react-native';
  2. import { name as appName } from './app.json';
  3. import App from './src/App';
  4. // if (__DEV__) {
  5. // void import('@/reactotron.config');
  6. // }
  7. AppRegistry.registerComponent(appName, () => App);