English
Search…
⌃K
Links

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.

Modulo

import { useChannel } from "@atomico/hooks/use-channel";

Syntax

const channel = "MyChannel";
const [parentValue, setChildValue] = useChannel(channel);
Where :
  1. 1.
    channel: String, defines the name of the event to be used to generate the channel.
  2. 2.
    parentValue: Value inherited by the parent component.
  3. 3.
    setChildValue: Callback, defines a value for nested components.

Example

This hook is used by @atomico/components/router
Last modified 1yr ago