Best way to load local images in react is as follows
For example, Keep all your images(or any assets like videos, fonts) in the public folder as shown below.
Simply write <img src='/assets/images/Call.svg' />
to access the Call.svg image from any of your react component
Note: Keeping your assets in public folder ensures that, you can access it from anywhere from the project, by just giving '/path_to_image' and no need for any path traversal '../../' like this