I currently have a regular JavaScript array of objects and each of the objects have their own respective fields.
In the Key field, it is currently text, however I want to replace it with a React component (Hyperlink is my own component)
I want the elements in the key field of each of the object to be instead:
<Hyperlink href="key">key</Hyperlink>
So for example in the first object, the key is CSFS-38709.
I want to change the key to be instead:
<Hyperlink href="http://mylink.com/CSFS-38709"> CSFS-38709 </Hyperlink>
I'm really confused on how to have the fields of objects in an array to be a React component.
Anyone help would be really appreciated!
