ClientAs of v7.0.0What is a client?A client is any component consuming the React Observable Context. A client consumes this context by:either joining the React Observable Context's change stream by invoking the context's useStream hook propertyor connecting itself to the change stream via the connector returned by the context's React Observable Context connect function propertyPlease see examples respectively in:Joining the React Observable Context change stream (hook with memo method)Joining the React Observable Context change stream (hoc method)