2020-02-26 05:54:27 +08:00
|
|
|
/**
|
2022-10-18 23:19:24 +08:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2020-02-26 05:54:27 +08:00
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*
|
|
|
|
|
* @flow
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-16 06:31:31 +08:00
|
|
|
export {default as __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED} from './src/ReactDOMSharedInternals';
|
2020-02-26 05:54:27 +08:00
|
|
|
export {
|
2021-05-12 23:28:14 +08:00
|
|
|
createPortal,
|
|
|
|
|
createRoot,
|
2021-06-16 04:37:53 +08:00
|
|
|
hydrateRoot,
|
2020-02-26 05:54:27 +08:00
|
|
|
findDOMNode,
|
2021-05-12 23:28:14 +08:00
|
|
|
flushSync,
|
2020-02-26 05:54:27 +08:00
|
|
|
hydrate,
|
|
|
|
|
render,
|
|
|
|
|
unmountComponentAtNode,
|
2021-05-12 23:28:14 +08:00
|
|
|
unstable_batchedUpdates,
|
2020-02-26 05:54:27 +08:00
|
|
|
unstable_renderSubtreeIntoContainer,
|
2021-05-12 23:28:14 +08:00
|
|
|
unstable_runWithPriority, // DO NOT USE: Temporarily exposed to migrate off of Scheduler.runWithPriority.
|
2022-10-24 11:20:52 +08:00
|
|
|
preinit,
|
|
|
|
|
preload,
|
2021-05-12 23:28:14 +08:00
|
|
|
version,
|
2020-02-26 05:54:27 +08:00
|
|
|
} from './src/client/ReactDOM';
|