import { memo } from 'react' import ShortcutsName from '../shortcuts-name' import Tooltip from '@/app/components/base/tooltip' type TipPopupProps = { title: string children: React.ReactNode shortcuts?: string[] } const TipPopup = ({ title, children, shortcuts, }: TipPopupProps) => { return ( {title} { shortcuts && } } > {children} ) } export default memo(TipPopup)