Thanks so much !
from the new version of strapi ( Strapi v4), all I had to do was to make the get request populate so I could get access to the image :
useEffect(() => {
axios.get("http://localhost:1337/api/articles?populate=*").then((res) => {
setPosts(res.data);
});
}, []);