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

14 lines
289 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">
{props.data.picUrl? <img className="eventPic" src={props.data.picUrl}></img> : JSON.stringify(props.data)}
</div>
);
}
export default Event;