I searched and found that I was supposed to use require() but it doesn't seem to be working.
<img src={require("../assets/img/business.png")} alt="business" />
I can confirm that this image path is correct, but on the inspect mode it says the src of my image is [object Module].
Also, when I import the image from the same path, it works completely fine.
Could this be because I am using typescript? I also saw people talking about browserify on another post, does browserify have anything to do with me being unable to use require?