main
js 31 lines 787 Bytes
Raw
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 export {default as __DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE} from './ReactDOMSharedInternalsFB';
11
12 export {
13 browser,
14 createPortal,
15 flushSync,
16 unstable_batchedUpdates,
17 unstable_createEventHandle,
18 unstable_runWithPriority, // DO NOT USE: Temporarily exposed to migrate off of Scheduler.runWithPriority.
19 useFormStatus,
20 useFormState,
21 requestFormReset,
22 prefetchDNS,
23 preconnect,
24 preload,
25 preloadModule,
26 preinit,
27 preinitModule,
28 version,
29 } from './client/ReactDOMClientFB';
30
31 export {createRoot, hydrateRoot} from './client/ReactDOMRootFB';