I have a component image which is using a value, coming from a loop.
something like:
arr.map(m => <Component imgsrc={m.src} />)
where src prop is a link to the image folder. then I do
<img src={require(`${props.imgsrc}`)} />
but if does not work, however if I use it statically
<img src={require(`same-path-as-src`)} />
it works.
What is the difference?