/
mustreets
/
TestApp
Обзор
Документация
Войти
/
mustreets
/
TestApp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
master
index.js
20 строк
425 B
Slava
Remove Crashlytics integration from the beta lane in Fastfile
07 июн 2026, 20:06
07 июн 2026, 20:06
f21773c
Код
Авторство
О чём код?
/** * @format */ import 'react-native-gesture-handler'; import { AppRegistry } from 'react-native'; import App from './App'; import AppCosmos from './App.cosmos'; import { name as appName } from './app.json'; if (__DEV__) { require('./ReactotronConfig'); // Adjust path depending on where you saved it } const cosmosEnabled = false; AppRegistry.registerComponent(appName, () => cosmosEnabled ? AppCosmos : App, );