My-Dictionary-React-Application / src / mapped-Photos.js
mapped-Photos.js
Raw
import React from "react";
import "./reactStyling.css";

function MappedPhotos(response) {
  //console.log(response);
  return (
    <img
      src={response.Term.src.landscape}
      className="img-fluid p-3 CSS-photo-img"
      alt={response.Term.alt}
    />
  );
}

export default MappedPhotos;