I wanted to import image in react without declaring it on top of the file
like, import img from './this/is/file.png'
But, I wanted to import it directly to the jsx tag, how can I do that?
I've tried <img src={import './this/is/file.png'} alt='' />
but it does not work.