use-channel
create connection between components to share internal states
Este hook implementa @atomico/channel una alternativa a React.Context, pero basada en eventos y agnóstica.
import { useChannel } from "@atomico/hooks/use-channel";
const channel = "MyChannel";
const [parentValue, setChildValue] = useChannel(channel);
Where :
- 1.
channel
:String
, defines the name of the event to be used to generate the channel. - 2.
parentValue
: Value inherited by the parent component. - 3.
setChildValue
:Callback
, defines a value for nested components.
Last modified 1yr ago