import React from "react"; import "./Event.css"; function Event(props) { let imgArray = []; if (props.data.hasOwnProperty('screenshots')) { props.data.screenshots.forEach(element => { imgArray = [...imgArray, ()] }); } return (
{JSON.stringify(props.data.source)}

{[...imgArray]}
); } export default Event;