@edrickalemaSubmitted over 2 years ago
My svg images arent displaying
My svg images arent displaying
Hi @19alema
I've not come across the syntax you've used to export your SVGs from constants, but generally if you treat them simply as a direct ES6 named import and export, i.e.
import Clientdatabiz from "../Assets/images/client-databiz.svg"
...
export { Clientdatabiz }
then that should work! I'm not sure you can export them as a ReactComponent, as they transpile to the source to the image itself.
Let me know if this helps!
Jack