use-channel
create connection between components to share internal states
Last updated
create connection between components to share internal states
Last updated
Now, Atomico includes a context API as part of its core. We recommend implementing it as an alternative to using useChannel
.
An alternative to React's context but solely based on hooks.
Where :
channel
: String
, defines the name of the event to be used to generate the channel.
parentValue
: Value inherited by the parent component.
setChildValue
: Callback
, defines a value for nested components.
This hook is used by @atomico/components/router