From 65d6d28a42ed4cd5d4c82544016f9ddeb880e71b Mon Sep 17 00:00:00 2001 From: James Kyle Date: Sat, 21 Oct 2017 23:53:38 +1100 Subject: [PATCH] Expose ReactCoroutine on __SECRET as unstable API --- packages/react-reconciler/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/react-reconciler/index.js b/packages/react-reconciler/index.js index 0408d8660cf7d..e4034bbf7cad7 100644 --- a/packages/react-reconciler/index.js +++ b/packages/react-reconciler/index.js @@ -17,3 +17,6 @@ export type { } from './src/ReactFiberReconciler'; module.exports = require('./src/ReactFiberReconciler'); +module.exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = { + ReactCoroutine: require('./src/ReactCoroutine'), +};