import React from "react"; import { logDocumentAccess } from "../../actions/logsActions"; export default class LogFileDownload extends React.Component { _log = () => { const{ log } = this.props; if(log !== undefined) { const { log } = this.props; console.log("LOG", "LogFileDownload", { props: this.props }); console.log("LOG", "LogFileDownload", { log }); logDocumentAccess(log) .then(() => {}) .catch(() => {}); } } }