Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.js 346B

123456789
  1. import 'react-native-gesture-handler';
  2. import { registerRootComponent } from 'expo';
  3. import App from './App';
  4. // registerRootComponent calls AppRegistry.registerComponent('main', () => App);
  5. // It also ensures that whether you load the app in Expo Go or in a native build,
  6. // the environment is set up appropriately
  7. registerRootComponent(App);