import {OverlayTrigger, Tooltip} from "react-bootstrap"; import React, {useState} from "react"; export function Notification({id, tip, content}) { const [show, setShow] = useState(true); return (
setShow(false)}> {content} {tip}} >
) }