log-viewer/frontend/src/components/event/Event.js

14 lines
292 B
JavaScript
Raw Normal View History

2022-02-09 11:56:34 +00:00
import React from "react";
import "./Event.css";
function Event(props) {
return (
<div className="eventDiv">
2022-02-15 19:34:59 +00:00
{props.screenshots ? <img className="eventPic" src={props.screenshots[0].url}></img> : JSON.stringify(props)}
2022-02-09 11:56:34 +00:00
</div>
);
}
export default Event;