diff --git a/examples/dom/WebReconciler.re b/examples/dom/WebReconciler.re index d45db42..8a20193 100644 --- a/examples/dom/WebReconciler.re +++ b/examples/dom/WebReconciler.re @@ -127,7 +127,7 @@ module Reconciler = { }; /* Step 5: Hook it up! */ -module JsooReact = Reactify.Make(Reconciler); +module JsooReact = Reactify__ReactifyExperimental.Make(Reconciler); open JsooReact; /* Define our primitive components */ @@ -152,14 +152,14 @@ let reducer = (state, action) => | Decrement => state - 1 }; -let renderCounter = () => - useReducerExperimental(reducer, 0, ((count, dispatch)) => - -