import { BLOCK_KINDS } from '@stores/constants'; import { useBlock } from '@utils/hooks/useBlock'; import { useProfile } from '@utils/hooks/useProfile'; import { shortenKey } from '@utils/shortenKey'; export function MentionUser({ pubkey }: { pubkey: string }) { const { add } = useBlock(); const { user } = useProfile(pubkey); return ( ); }