Здравствуйте!
Есть кусочек кода:
const disguiseName = name => {
switch (name) {
case 'binance':
return 'Exchange 1';
case 'bitfinex':
return 'Exchange 2';
case 'bittrex':
return 'Exchange 3';
case 'exmo':
return 'Exchange 4';
case 'gateio':
return 'Exchange 5';
case 'hitbtc2':
return 'Exchange 6';
case 'kucoin':
return 'Exchange 7';
case 'poloniex':
return 'Exchange 8';
case 'rem_internal_exchange':
return 'Exchange 9';
case 'tidex':
return 'Exchange 10';
default:
break;
}
return 'Exchange';
};
И мне в
return 'Exchange 1';
Нужно боавить тег span - нужно разбить надпись
return 'Exc<span>hange 1</span>';
Только выводится так-же - html не сработал:
Exc<span>hange 1</span>
Как это правильно можно сделать?