React tag not showing image

Try this:

import React from 'react';
import Image from 'path/to/image';

const YourComponent = () => {
  return <img src={Image} />; 
};

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top