1. /**
    
  2.  * Copyright (c) Meta Platforms, Inc. and affiliates.
    
  3.  *
    
  4.  * This source code is licensed under the MIT license found in the
    
  5.  * LICENSE file in the root directory of this source tree.
    
  6.  *
    
  7.  * @format
    
  8.  * @flow
    
  9.  */
    
  10. 
    
  11. 'use strict';
    
  12. 
    
  13. import type {ReactNativeType} from './ReactNativeTypes';
    
  14. 
    
  15. let ReactNative;
    
  16. 
    
  17. if (__DEV__) {
    
  18.   ReactNative = require('../implementations/ReactNativeRenderer-dev');
    
  19. } else {
    
  20.   ReactNative = require('../implementations/ReactNativeRenderer-prod');
    
  21. }
    
  22. 
    
  23. module.exports = (ReactNative: ReactNativeType);