When try to run my this code,
<audio controls><source src="./audio/sound.mp3" type="audio/mpeg" /></audio>
The audio file was not playing.
Later I tried to do it this way :
import sound from './audio/sound.mp3'<audio controls><source src={sound} type="audio/mpeg" /></audio>
Module not found: Error: Can't resolve './notes/c.mp3' in the src
how can I import mp3/wav file in react without error ?