All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.withTooltip.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import { UncontrolledTooltip } from 'reactstrap'

/**
 * Если есть подсказка, возвращаем с тултипом
 */

export default function placementwithTooltip(
    component,
    hint,
    hintPosition,
    id,
) {
    if (hint) {
        return (
            <>
                {component}
                
                    {hint}
                
            
        )
    }

    return component
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy