| 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 | isContextConsumer, |
| 28 | isContextProvider, |
| 29 | isElement, |
| 30 | isForwardRef, |
| 31 | isFragment, |
| 32 | isLazy, |
| 33 | isMemo, |
| 34 | isPortal, |
| 35 | isProfiler, |
| 36 | isStrictMode, |
| 37 | isSuspense, |
| 38 | isSuspenseList, |
| 39 | } from './src/ReactIs'; |