/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Renderer/shims/ReactNative.js
26 строк
659 B
Riccardo Cipolleschi
Sync React 19.2 into React Native (#54109)
10 окт 2025, 21:44
10 окт 2025, 21:44
6f48270
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @noformat * @nolint * @flow * @generated SignedSource<<e2c46705ed927302dbe9332dafba459d>> * * This file was sync'd from the facebook/react repository. */ 'use strict'; import type {ReactNativeType} from './ReactNativeTypes'; let ReactNative: ReactNativeType; if (__DEV__) { ReactNative = require('../implementations/ReactNativeRenderer-dev'); } else { ReactNative = require('../implementations/ReactNativeRenderer-prod'); } export default ReactNative;