Untitled
unknown
plain_text
a year ago
365 B
5
Indexable
import React from "react";
import { Tooltip } from "react-tooltip"
const ToolTip = ({ children, id, className = 'tool-tip-custom', place = 'right', content }) => (
<>
{React.cloneElement(children, {
"data-tooltip-id": id
})}
<Tooltip id={id} className={className} place={place} content={content} />
</>
)
export default ToolTipEditor is loading...
Leave a Comment