From db4dcef9532cc9e3e1235bc62e917efcb3fb5b24 Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Mon, 29 Aug 2016 12:10:05 -0700 Subject: [PATCH] Remove .Mixin https://github.com/facebook/react/pull/7598#issuecomment-243209302 --- src/ReactART.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReactART.js b/src/ReactART.js index 1e7f78b..bd9a795 100644 --- a/src/ReactART.js +++ b/src/ReactART.js @@ -93,7 +93,7 @@ function injectAfter(parentNode, referenceNode, node) { // ContainerMixin for components that can hold ART nodes -const ContainerMixin = assign({}, ReactMultiChild.Mixin, { +const ContainerMixin = assign({}, ReactMultiChild, { /** * Moves a child component to the supplied index. @@ -144,7 +144,7 @@ const ContainerMixin = assign({}, ReactMultiChild.Mixin, { * @param {?object} nextChildren. * @param {ReactReconcileTransaction} transaction * @internal - * @override {ReactMultiChild.Mixin.updateChildren} + * @override {ReactMultiChild.updateChildren} */ updateChildren: function(nextChildren, transaction, context) { this._updateChildren(nextChildren, transaction, context);