import * as React from 'react'; import PropTypes from 'prop-types'; import TrialLog from './TrialLog'; const PaitrialLog = (props): any => { const { logStr } = props; const isHasNFSLog = logStr.indexOf(',') !== -1 ? true : false; return (
{isHasNFSLog ? (
) : ( )}
); }; PaitrialLog.propTypes = { logStr: PropTypes.string }; export default PaitrialLog;