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.  * @flow
    
  8.  */
    
  9. 
    
  10. 'use strict';
    
  11. 
    
  12. export {
    
  13.   isValidElementType,
    
  14.   typeOf,
    
  15.   ContextConsumer,
    
  16.   ContextProvider,
    
  17.   Element,
    
  18.   ForwardRef,
    
  19.   Fragment,
    
  20.   Lazy,
    
  21.   Memo,
    
  22.   Portal,
    
  23.   Profiler,
    
  24.   StrictMode,
    
  25.   Suspense,
    
  26.   SuspenseList,
    
  27.   isAsyncMode,
    
  28.   isConcurrentMode,
    
  29.   isContextConsumer,
    
  30.   isContextProvider,
    
  31.   isElement,
    
  32.   isForwardRef,
    
  33.   isFragment,
    
  34.   isLazy,
    
  35.   isMemo,
    
  36.   isPortal,
    
  37.   isProfiler,
    
  38.   isStrictMode,
    
  39.   isSuspense,
    
  40.   isSuspenseList,
    
  41. } from './src/ReactIs';