@consumidor-positivo/ts-utils - v1.34.0
    Preparing search index...

    Variable IfConst

    If: FC<ComponentWithConditionPropsWithFunctionChildren> = ...

    Renders children only when condition is truthy. Shorthand for <IfElse> with only a <Then> block.

    import { If } from '@consumidor-positivo/ts-utils/react';

    <If condition={isLoggedIn}>
    <span>Welcome!</span>
    </If>

    A boolean, number, string, null, undefined, or a function returning one of these

    Content to render when condition is truthy