Module React.ContextSource

Sourcetype 'a t = {
  1. current_value : 'a ref;
  2. async_key : Obj.t Lwt.key;
  3. provider : 'a provider;
  4. consumer : children:element -> element;
}
Sourceval makeProps : value:'a -> children:element -> unit -> < value : 'a ; children : element > Js.t
Sourceval provider : 'a t -> (< value : 'a ; children : element > Js.t, element) componentLike