I am using React to try and pull logos from a local file, but in order to do that, I need to pull the field from json data and convert it into a string.
So for example, I have <td width='60%'><Link to={item.id}>{item.id.toUpperCase()}</Link></td>
I know normal javascript won't really run here, so I can't try the JSON.stringify() function. I am new to react so please bear with me if I am asking super simple questions.
Also, is there a way to use javascript with react? I did some google searches and never received a clear-cut answer aside from using Babel.
I know normal javascript won't really run here?