react-mentions
react-mentions copied to clipboard
How can I add a image to suggested mention?
<Mention /> Component display a menu with the options, but I'm only able to display text as options. Is there way to display a picture as well? like twitter mentions?
@Groommers - DO you want to display images in suggestion dropdown?
Yes! i wanted to add a image next to the name of the dropdown. I already switched to Draftjs mentions plugin
<Mention
className='mentions__mention'
trigger="@"
displayTransform={(id, name) => @${name}}
data={sessionUsers}
onAdd={onAddMentions}
renderSuggestion={(suggestion: any, _, __, index) => <RenderSuggestions suggestion={suggestion} />}
/>