Function Unwrap

  • Unwrap a cell. The DOM is rebuilt whenever the input cell changes. If the cell value is null or undefined the else-branch will be rendered instead (similar to Deref).

    Type Parameters

    • T

    Parameters

    Returns JSX.Element

    Example

    const num = bind(5);

    <Unwrap from={num}>{ num =>
    {num + 5} is ten
    }</Unwrap>