I have the icons below as following
import GandalfIcon from "../../assets/gandalf.svg";
import TreasureMapIcon from "../../assets/treasuremap.svg";
import BookIcon from "../../assets/book.svg";
import AcademyIcon from "../../assets/academy.svg";
I also have the same names (GandalfIcon, TreasureMapIcon...) in a JSON file. What I want to do is when I get that string "GandalfIcon" from the JSON, I want to display the actual GandalfIcon on the page. I am using map() so guess I cannot hardcode them, and using {} does not work. Any suggestions?
So to clarify, this does not work:
{event.icons.map((icon) => {
const url = icon;
return <img src={url} />;
})}
Try this approach,
Hope this is the use case you are looking for.
Sample code - https://codesandbox.io/s/fervent-goldberg-qlz1f?file=/src/App.js:0-713