import type { FunctionComponent } from 'react'; import React from 'react'; import { TOOLTIP_LONG_DELAY_TIME } from '../../../lib/toolTipDelayTime'; import { Tooltip } from '../../Rcui/Tooltip'; import styles from './styles.scss'; export interface CallInfoProps { attr?: string; name: string; content: string; enableCopy?: boolean; } export const CallInfo: FunctionComponent = ({ name, content, }) => { return (
{name}
{content}
); };