I have written a function in Reactjs and I want to return text with an icon if a certain condition meets. Here is how I wrote it
if (actionNeeded) {
return abbreviation + <i className={'fa fa-exclamation-circle fa-fw'} />;
}
This returns text [object Object] instead of text (icon). How do I get it to work?