Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| /** | |
| * Copyright (c) 2013-present, Facebook, Inc. | |
| * | |
| * This source code is licensed under the MIT license found in the | |
| * LICENSE file in the root directory of this source tree. | |
| * | |
| * @flow | |
| */ | |
| import invariant from 'fbjs/lib/invariant'; | |
| export const enableAsyncSubtreeAPI = true; | |
| export const enableAsyncSchedulingByDefaultInReactDOM = false; | |
| // Exports ReactDOM.createRoot | |
| export const enableCreateRoot = false; | |
| export const enableUserTimingAPI = __DEV__; | |
| // Mutating mode (React DOM, React ART, React Native): | |
| export const enableMutatingReconciler = true; | |
| // Experimental noop mode (currently unused): | |
| export const enableNoopReconciler = false; | |
| // Experimental persistent mode (CS): | |
| export const enablePersistentReconciler = false; | |
| // Helps identify side effects in begin-phase lifecycle hooks and setState reducers: | |
| export const debugRenderPhaseSideEffects = false; | |
| // Only used in www builds. | |
| export function addUserTimingListener() { | |
| invariant(false, 'Not implemented.'); | |
| } |